mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import Footer from 'components/layout/footer';
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<div className="w-full">
|
|
<div className="mx-8 max-w-2xl py-20 sm:mx-auto">{children}</div>
|
|
</div>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|