file-tree/src-next/app/layout.tsx
2025-02-22 02:05:17 -05:00

19 lines
299 B
TypeScript

import '../css/index.css';
import AppLayout from 'components/AppLayout';
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>
<AppLayout>
{children}
</AppLayout>
</body>
</html>
)
}