Files
message-inbox-web-frontend-sdk/apps/web/app/(app)/layout.tsx
T
2026-07-17 21:48:37 +05:30

6 lines
176 B
TypeScript

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