()
| 4 | import {Snippet} from "@heroui/snippet"; |
| 5 | |
| 6 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…