()
| 1 | import { useSession } from "next-auth/react"; |
| 2 | |
| 3 | const PricingView = () => { |
| 4 | const { data: session } = useSession(); |
| 5 | |
| 6 | return ( |
| 7 | <div className="bg-white dark:bg-zinc-800"> |
| 8 | <span>Debug View</span> |
| 9 | <div className="pt-2 text-sm">Session Info</div> |
| 10 | <div className="whitespace-pre-wrap mx-auto max-w-7xl lg:flex lg:items-center lg:justify-between"> |
| 11 | {JSON.stringify(session, null, "\t")} |
| 12 | </div> |
| 13 | </div> |
| 14 | ); |
| 15 | }; |
| 16 | |
| 17 | export default PricingView; |
nothing calls this directly
no outgoing calls
no test coverage detected