mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 07:56:59 +00:00
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
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>
|
|
);
|
|
}
|