t2-mapper/app/layout.tsx
2025-09-11 16:48:23 -07:00

19 lines
281 B
TypeScript

import "./style.css";
export const metadata = {
title: "Next.js",
description: "Generated by Next.js",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}