mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { getServerSession } from "next-auth/next"
|
|
|
|
export default async function Page() {
|
|
const session = await getServerSession()
|
|
return <pre>{JSON.stringify(session, null, 2)}</pre>
|
|
}
|