feat: init
This commit is contained in:
13
apps/web/ce/components/cycles/analytics-sidebar/root.tsx
Normal file
13
apps/web/ce/components/cycles/analytics-sidebar/root.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
import type { FC } from "react";
|
||||
import React from "react";
|
||||
// components
|
||||
import { SidebarChart } from "./base";
|
||||
|
||||
type Props = {
|
||||
workspaceSlug: string;
|
||||
projectId: string;
|
||||
cycleId: string;
|
||||
};
|
||||
|
||||
export const SidebarChartRoot: FC<Props> = (props) => <SidebarChart {...props} />;
|
||||
Reference in New Issue
Block a user