next preview UAT fixture (javascript)

This commit is contained in:
Jogeswar Reddy Kupuli
2026-08-26 13:09:21 +01:00
commit e1550afa38
7 changed files with 468 additions and 0 deletions

7
app/layout.jsx Normal file
View File

@@ -0,0 +1,7 @@
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}