MCPcopy Create free account
hub / github.com/TryCatchLearn/Overflow / Page

Function Page

webapp/src/app/session/page.tsx:6–32  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4import {Snippet} from "@heroui/snippet";
5
6export default async function Page() {
7 const session = await auth();
8
9 return (
10 <div className='px-6'>
11 <div className='text-center'>
12 <h3 className='text-3xl'>Session dashboard</h3>
13 </div>
14
15 <Snippet
16 symbol=''
17 color='primary'
18 classNames={{
19 base: 'w-full mt-4',
20 pre: 'text-wrap whitespace-pre-wrap break-all'
21 }}>
22 {JSON.stringify(session, null, 2)}
23 </Snippet>
24
25 <div className='flex items-center gap-3 justify-center mt-6'>
26 <ErrorButtons />
27 <AuthTestButton />
28 </div>
29 </div>
30
31 );
32}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…