commerce/site/pages/search.tsx
2022-04-20 15:29:34 +05:00

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;