Files
next-learn/dashboard/starter-example/app/layout.tsx
2023-10-26 09:06:55 -07:00

12 lines
169 B
TypeScript

export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}