mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
10 lines
283 B
TypeScript
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
|