()
| 180 | } |
| 181 | |
| 182 | function App() { |
| 183 | const [show, setShow] = createSignal(false) |
| 184 | |
| 185 | return ( |
| 186 | <> |
| 187 | <Suspense fallback="loading">{show() && <Page />}</Suspense> |
| 188 | <button |
| 189 | aria-label="toggle" |
| 190 | onClick={() => setShow((prev) => !prev)} |
| 191 | /> |
| 192 | </> |
| 193 | ) |
| 194 | } |
| 195 | |
| 196 | const rendered = renderWithClient(queryClient, () => <App />) |
| 197 |
nothing calls this directly
no outgoing calls
no test coverage detected