import { getServerSession } from "next-auth/next" export default async function Page() { const session = await getServerSession() return
{JSON.stringify(session, null, 2)}
}