import { FC } from "react"; import { observer } from "mobx-react-lite"; // components import { WorkspaceHelpSection, WorkspaceSidebarDropdown, WorkspaceSidebarMenu, WorkspaceSidebarQuickAction, } from "components/workspace"; import { ProjectSidebarList } from "components/project"; // hooks import { useApplication } from "hooks/store"; export interface IAppSidebar {} export const AppSidebar: FC = observer(() => { // store hooks const { theme: themStore } = useApplication(); return (
); });