nextjs-dashboard/app/layout.tsx

12 lines
169 B
TypeScript
Raw Normal View History

2023-10-29 23:23:33 +00:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}