MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / PricingView

Function PricingView

src/components/DebugView.tsx:3–15  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { useSession } from "next-auth/react";
2
3const 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
17export default PricingView;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected