mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
38 lines
589 B
TypeScript
38 lines
589 B
TypeScript
import { LayoutGrid, List } from "lucide-react";
|
|
|
|
export const PAGE_VIEW_LAYOUTS = [
|
|
{
|
|
key: "list",
|
|
icon: List,
|
|
title: "List layout",
|
|
},
|
|
{
|
|
key: "detailed",
|
|
icon: LayoutGrid,
|
|
title: "Detailed layout",
|
|
},
|
|
];
|
|
|
|
export const PAGE_TABS_LIST: { key: string; title: string }[] = [
|
|
{
|
|
key: "recent",
|
|
title: "Recent",
|
|
},
|
|
{
|
|
key: "all",
|
|
title: "All",
|
|
},
|
|
{
|
|
key: "favorites",
|
|
title: "Favorites",
|
|
},
|
|
{
|
|
key: "created-by-me",
|
|
title: "Created by me",
|
|
},
|
|
{
|
|
key: "created-by-others",
|
|
title: "Created by others",
|
|
},
|
|
];
|