()
| 2999 | } |
| 3000 | |
| 3001 | function App() { |
| 3002 | const [show, toggle] = React.useReducer((x) => !x, true) |
| 3003 | |
| 3004 | return ( |
| 3005 | <div> |
| 3006 | <button onClick={toggle}>{show ? 'hide' : 'show'}</button> |
| 3007 | {show && <Page />} |
| 3008 | </div> |
| 3009 | ) |
| 3010 | } |
| 3011 | |
| 3012 | const rendered = renderWithClient(queryClient, <App />) |
| 3013 |
nothing calls this directly
no test coverage detected