import type { ReactNode } from 'react'; import Sidebar from './Sidebar'; interface Props { children: ReactNode; } export default function PageShell({ children }: Props) { return (
{children}
); }