mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 12:47:50 +00:00
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
import Footer from 'components/layout/footer';
|
|
import { Suspense } from 'react';
|
|
|
|
export default function SearchLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<Suspense>
|
|
<div className="mx-auto max-w-screen-2xl px-8 pb-4">{children}</div>
|
|
<Footer />
|
|
</Suspense>
|
|
);
|
|
}
|