Files
2026-07-13 12:29:49 +08:00

14 lines
235 B
TypeScript

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