Files
plane/apps/web/ce/components/cycles/analytics-sidebar/root.tsx

13 lines
270 B
TypeScript
Raw Permalink Normal View History

"use client";
import React, { FC } from "react";
// components
import { SidebarChart } from "./base";
type Props = {
workspaceSlug: string;
projectId: string;
cycleId: string;
};
export const SidebarChartRoot: FC<Props> = (props) => <SidebarChart {...props} />;