All checks were successful
backend-action / build-image (push) Successful in 1m5s
18 lines
366 B
TypeScript
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>
|
|
);
|
|
}
|