()
| 2923 | } |
| 2924 | |
| 2925 | function App() { |
| 2926 | const [show, toggle] = React.useReducer((x) => !x, true) |
| 2927 | |
| 2928 | return ( |
| 2929 | <div> |
| 2930 | <button onClick={toggle}>{show ? 'hide' : 'show'}</button> |
| 2931 | {show && <Page />} |
| 2932 | </div> |
| 2933 | ) |
| 2934 | } |
| 2935 | |
| 2936 | const rendered = renderWithClient(queryClient, <App />) |
| 2937 |
nothing calls this directly
no test coverage detected