Files
rehearshalhub/web/src/components/AppShell.tsx
2026-04-08 15:10:52 +02:00

6 lines
188 B
TypeScript
Executable File

import { ResponsiveLayout } from "./ResponsiveLayout";
export function AppShell({ children }: { children: React.ReactNode }) {
return <ResponsiveLayout>{children}</ResponsiveLayout>;
}