Files
web/app/[lang]/(live)/(protected)/my-pages/page.tsx
2024-03-14 11:02:36 +01:00

13 lines
240 B
TypeScript

import { auth } from "@/auth"
export default async function MyPages() {
const session = await auth()
console.log({ session })
return (
<>
<h2>Wilkommen</h2>
<pre>{JSON.stringify(session, null, 2)}</pre>
</>
)
}