File size: 235 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { headers } from 'next/headers'
export const dynamic = 'error'
export default async function Page() {
await headers()
return (
<>
<p id="page">/dynamic-error</p>
<p id="date">{Date.now()}</p>
</>
)
}
|