import { ContextWrapper } from './ContextWrapper' import NavBar from './NavBar' import { SetAppState } from './SetAppState' import type { AssetsApi } from '#types/AssetsApi' /** * @category AppShell */ export function AppShell({ appName, children, assetsApi, userType, }: { appName: string children: React.ReactNode assetsApi: AssetsApi userType: string }) { return (
{children}
) }