fosrl.pangolin/src/app/layout.tsx

20 lines
348 B
TypeScript
Raw Normal View History

2024-09-27 19:48:49 -04:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
2024-09-27 21:39:03 -04:00
title: "Pangolin",
description: "",
2024-09-27 19:48:49 -04:00
};
export default function RootLayout({
2024-09-27 21:39:03 -04:00
children,
2024-09-27 19:48:49 -04:00
}: Readonly<{
2024-09-27 21:39:03 -04:00
children: React.ReactNode;
2024-09-27 19:48:49 -04:00
}>) {
2024-09-27 21:39:03 -04:00
return (
<html lang="en">
<body>{children}</body>
</html>
);
2024-09-27 19:48:49 -04:00
}