mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 20:57:51 +00:00
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
import Footer from 'components/layout/footer';
|
|
import { Suspense } from 'react';
|
|
|
|
export default function SearchLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<div className="mx-auto mt-6 min-h-[500px] max-w-screen-2xl px-8 pb-4 lg:min-h-[800px]">
|
|
<Suspense>{children}</Suspense>
|
|
</div>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|