diff --git a/src/app/(sidebar)/layout.tsx b/src/app/(sidebar)/layout.tsx new file mode 100644 index 00000000..d9b05b11 --- /dev/null +++ b/src/app/(sidebar)/layout.tsx @@ -0,0 +1,11 @@ +import { Sidebar } from '@/container/Sidebar/Sidebar'; +import { PropsWithChildren } from 'react'; + +export default function SidebarLayout({ children }: PropsWithChildren) { + return ( +
+ +
{children}
+
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e44d9079..ffde3245 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -19,12 +19,8 @@ export default function RootLayout({ }>) { return ( - - - {/* FIXME: */} -
- {children} -
+ + {children} );