mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 07:56:59 +00:00
10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
import { getSearchStaticProps } from '@lib/search-props';
|
|
import type { GetStaticPropsContext } from 'next';
|
|
import Search from '@components/search';
|
|
|
|
export async function getStaticProps(context: GetStaticPropsContext) {
|
|
return getSearchStaticProps(context);
|
|
}
|
|
|
|
export default Search;
|