()
| 2913 | } |
| 2914 | |
| 2915 | function App() { |
| 2916 | const [show, toggle] = React.useReducer((x) => !x, true) |
| 2917 | |
| 2918 | return ( |
| 2919 | <div> |
| 2920 | <button onClick={toggle}>{show ? 'hide' : 'show'}</button> |
| 2921 | {show && <Page />} |
| 2922 | </div> |
| 2923 | ) |
| 2924 | } |
| 2925 | |
| 2926 | const rendered = renderWithClient(queryClient, <App />) |
| 2927 |
nothing calls this directly
no test coverage detected