import { headers } from 'next/headers' export default async function SSRPage() { const headersObj = Object.fromEntries(await headers()) return ( <>

app-dir

{JSON.stringify(headersObj)}

) }