mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
import styles from './styles.module.scss';
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang='en'>
|
|
<body className={styles.body}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|