18 lines
438 B
TypeScript
18 lines
438 B
TypeScript
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
|
import config from '@payload-config'
|
|
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
|
import { RootPage } from '@payloadcms/next/views'
|
|
|
|
type Args = {
|
|
params: {
|
|
segments: string[]
|
|
}
|
|
searchParams: {
|
|
[key: string]: string | string[]
|
|
}
|
|
}
|
|
|
|
const Page = ({ params, searchParams }: Args) => RootPage({ config, params, searchParams })
|
|
|
|
export default Page
|