import { useAppState } from './hooks/useAppState' interface ContentProps { children?: React.ReactNode } /** * @category AppShell */ export function Content({ children }: ContentProps) { const appState = useAppState() return (
{children}
) }