ubiquitous-invention/apps/web/app/(app)/layout.tsx

12 lines
225 B
TypeScript
Raw Permalink Normal View History

import type { ReactNode } from "react";
import { AppShell } from "@/components/layout/app-shell";
export default function AppLayout({
children,
}: {
children: ReactNode;
}) {
return <AppShell>{children}</AppShell>;
}