gseps-front/src/app/layout.tsx

20 lines
337 B
TypeScript
Raw Normal View History

2023-08-23 08:12:52 +00:00
import "./globals.css";
import type { Metadata } from "next";
2023-08-23 07:50:10 +00:00
export const metadata: Metadata = {
2023-08-23 08:12:52 +00:00
title: "Create Next App",
description: "Generated by create next app",
};
2023-08-23 07:50:10 +00:00
export default function RootLayout({
children,
}: {
2023-08-23 08:12:52 +00:00
children: React.ReactNode;
2023-08-23 07:50:10 +00:00
}) {
return (
2023-08-23 08:12:52 +00:00
<html>
<body>{children}</body>
2023-08-23 07:50:10 +00:00
</html>
2023-08-23 08:12:52 +00:00
);
2023-08-23 07:50:10 +00:00
}