File size: 254 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
// TODO-APP: enable when flight error serialization is implemented
import ClientComp from './client-component'
import { headers } from 'next/headers'
export default async function Page() {
// Opt-in to SSR.
await headers()
return <ClientComp />
}
|