Files
Minikura/apps/web/app/layout.tsx

12 lines
169 B
TypeScript
Raw Normal View History

2024-09-21 13:28:02 +07:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}