()
| 12 | }); |
| 13 | |
| 14 | function App() { |
| 15 | const [showDemo, setShowDemo] = useState(true); |
| 16 | |
| 17 | return ( |
| 18 | <QueryClientProvider client={queryClient}> |
| 19 | <button onClick={() => setShowDemo(!showDemo)}>Toggle Demo</button> |
| 20 | {showDemo && <Demo />} |
| 21 | </QueryClientProvider> |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected