()
| 2903 | } |
| 2904 | |
| 2905 | function App() { |
| 2906 | const [show, toggle] = React.useReducer((x) => !x, true) |
| 2907 | |
| 2908 | return ( |
| 2909 | <div> |
| 2910 | <button onClick={toggle}>{show ? 'hide' : 'show'}</button> |
| 2911 | {show && <Page />} |
| 2912 | </div> |
| 2913 | ) |
| 2914 | } |
| 2915 | |
| 2916 | const rendered = renderWithClient(queryClient, <App />) |
| 2917 |
nothing calls this directly
no test coverage detected