mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
832cbb3330
### Adding or Updating Examples Migrate the basic-css example from page router to app router. If it needs further updates, Please let me know Happy to contribute --------- Co-authored-by: Steven <steven@ceriously.com>
17 lines
276 B
TypeScript
17 lines
276 B
TypeScript
export const metadata = {
|
|
title: "Next.js Basic CSS Example",
|
|
description: "Generated by Next.js",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|