File size: 241 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
// this should be dynamic as it doesn't specify force-static
// and the parent layout uses `headers()`
export default function Page() {
return (
<>
<p id="page">/force-static</p>
<p id="now">{Date.now()}</p>
</>
)
}
|