19 lines
403 B
TypeScript
19 lines
403 B
TypeScript
import './globals.css'
|
|
|
|
export const metadata = {
|
|
title: 'User Management',
|
|
description: 'Generated by create next app',
|
|
}
|
|
|
|
export default async function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<div className="container" style={{ padding: '50px 0 100px 0' }}>
|
|
{children}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|