Files
webclone-nextjs-template/frontend-nextjs/app/layout.tsx
2026-02-19 12:10:51 -08:00

10 lines
188 B
TypeScript

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