mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 14:06:59 +00:00
15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
import { TypesNav } from '/components/home.js';
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang='en'>
|
|
<body>
|
|
<nav>
|
|
<TypesNav />
|
|
</nav>
|
|
<main>{children}</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|