Files
sorvor-back/app/layout.tsx
Thanu Poptiphueng d125687536
All checks were successful
backend-action / build-image (push) Successful in 1m5s
added grouping creator
2024-05-16 14:49:42 +07:00

18 lines
366 B
TypeScript

import "./global.css";
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div className="container mx-auto mt-2 p-2">{children}</div>
</body>
</html>
);
}