chore: bumps packages, migrates to flattened admin

This commit is contained in:
James
2024-03-04 16:49:44 -05:00
parent f450f6bafe
commit 4e1a17da23
26 changed files with 133 additions and 458 deletions

View File

@ -0,0 +1,17 @@
/* 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/Root/index'
type Args = {
params: {
segments: string[]
}
searchParams: {
[key: string]: string | string[]
}
}
const Page = ({ params, searchParams }: Args) => RootPage({ config, params, searchParams })
export default Page