mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02:00
12 lines
437 B
TypeScript
12 lines
437 B
TypeScript
|
|
import { TAnalyticsTabsV2Base } from "@plane/types";
|
||
|
|
import { Overview } from "@/components/analytics-v2/overview";
|
||
|
|
import { WorkItems } from "@/components/analytics-v2/work-items";
|
||
|
|
export const ANALYTICS_TABS: {
|
||
|
|
key: TAnalyticsTabsV2Base;
|
||
|
|
i18nKey: string;
|
||
|
|
content: React.FC;
|
||
|
|
}[] = [
|
||
|
|
{ key: "overview", i18nKey: "common.overview", content: Overview },
|
||
|
|
{ key: "work-items", i18nKey: "sidebar.work_items", content: WorkItems },
|
||
|
|
];
|