mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
|
|
"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} />;
|