6 lines
188 B
TypeScript
Executable File
6 lines
188 B
TypeScript
Executable File
import { ResponsiveLayout } from "./ResponsiveLayout";
|
|
|
|
export function AppShell({ children }: { children: React.ReactNode }) {
|
|
return <ResponsiveLayout>{children}</ResponsiveLayout>;
|
|
}
|