File size: 247 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { headers } from 'next/headers'
export default async function SSRPage() {
const headersObj = Object.fromEntries(await headers())
return (
<>
<p>app-dir</p>
<p id="headers">{JSON.stringify(headersObj)}</p>
</>
)
}
|