import { FC } from "react"; import { ChevronRight } from "lucide-react"; // types import { TViewOperations } from "../types"; import { TViewTypes } from "@plane/types"; type TViewRoot = { workspaceSlug: string; projectId: string | undefined; viewId: string | undefined; viewType: TViewTypes; viewOperations: TViewOperations; }; export const ViewRoot: FC = (props) => { const {} = props; return (
{/* header */}
Workspace Views
{/* divider */}
{/* views content */}
Icon
Title
); };