import { Sidebar } from "~/components/Sidebar"; export type LayoutProps = { children: React.ReactNode; }; export function Layout({ children }: LayoutProps) { return ( <>
{children}
); }