MCPcopy Create free account
hub / github.com/TanStack/devtools / DemoStore

Function DemoStore

examples/react/bundling-repro/src/routes/demo/store.tsx:48–65  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

46}
47
48function DemoStore() {
49 return (
50 <div
51 className="min-h-[calc(100vh-32px)] text-white p-8 flex items-center justify-center w-full h-full"
52 style={{
53 backgroundImage:
54 'radial-gradient(50% 50% at 80% 80%, #f4a460 0%, #8b4513 70%, #1a0f0a 100%)',
55 }}
56 >
57 <div className="bg-white/10 backdrop-blur-lg rounded-xl p-8 shadow-lg flex flex-col gap-4 text-3xl min-w-1/2">
58 <h1 className="text-4xl font-bold mb-5">Store Example</h1>
59 <FirstName />
60 <LastName />
61 <FullName />
62 </div>
63 </div>
64 )
65}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected