20 lines
328 B
TypeScript
20 lines
328 B
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'GSH Digital Services'
|
|
};
|
|
|
|
type Props = Readonly<{
|
|
children: React.ReactNode;
|
|
}>
|
|
|
|
export default function RootLayout({ children }: Props) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |