commerce/site/pages/search.tsx
2022-01-07 11:48:45 -05:00

10 lines
283 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