File size: 112 Bytes
1e92f2d | 1 2 3 4 5 6 7 | import { Foo } from './lib'
export default function Page() {
return <Foo />
}
export const dynamic = 'error'
|
1e92f2d | 1 2 3 4 5 6 7 | import { Foo } from './lib'
export default function Page() {
return <Foo />
}
export const dynamic = 'error'
|