interface ContentProps { children?: React.ReactNode } /** * @category AppShell */ export function Content({ children }: ContentProps) { return (
{children}
) }