mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-20 02:20:17 -04:00
20 lines
388 B
TypeScript
20 lines
388 B
TypeScript
import '../styles/globals.css';
|
|
import { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Login',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
// Layouts must accept a children prop.
|
|
// This will be populated with nested layouts or pages
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
} |