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