Files
next-preview-uat-js/app/layout.jsx
2026-08-26 13:09:21 +01:00

8 lines
132 B
JavaScript

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