mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 05:07:51 +00:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import Footer from 'components/layout/footer';
|
|
|
|
export default function SearchLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<div className="min-h-[500px] lg:min-h-[800px]">{children}</div>
|
|
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|