mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
* chore: cycle sidebar refactor * chore: code splitting * chore: code refactor * chore: code refactor
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} />;
|