()
| 2 | import Layout from "../components/layout" |
| 3 | |
| 4 | export default function MePage() { |
| 5 | const { data } = useSession() |
| 6 | |
| 7 | return ( |
| 8 | <Layout> |
| 9 | <pre>{JSON.stringify(data, null, 2)}</pre> |
| 10 | </Layout> |
| 11 | ) |
| 12 | } |
nothing calls this directly
no test coverage detected