feat: init
This commit is contained in:
1
apps/web/ce/components/sidebar/app-switcher.tsx
Normal file
1
apps/web/ce/components/sidebar/app-switcher.tsx
Normal file
@@ -0,0 +1 @@
|
||||
export const SidebarAppSwitcher = () => null;
|
||||
2
apps/web/ce/components/sidebar/index.ts
Normal file
2
apps/web/ce/components/sidebar/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "./app-switcher";
|
||||
export * from "./project-navigation-root";
|
||||
15
apps/web/ce/components/sidebar/project-navigation-root.tsx
Normal file
15
apps/web/ce/components/sidebar/project-navigation-root.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
"use client";
|
||||
|
||||
import type { FC } from "react";
|
||||
// components
|
||||
import { ProjectNavigation } from "@/components/workspace/sidebar/project-navigation";
|
||||
|
||||
type TProjectItemsRootProps = {
|
||||
workspaceSlug: string;
|
||||
projectId: string;
|
||||
};
|
||||
|
||||
export const ProjectNavigationRoot: FC<TProjectItemsRootProps> = (props) => {
|
||||
const { workspaceSlug, projectId } = props;
|
||||
return <ProjectNavigation workspaceSlug={workspaceSlug} projectId={projectId} />;
|
||||
};
|
||||
Reference in New Issue
Block a user