()
| 2 | import { TanStackDevtools } from '@tanstack/preact-devtools' |
| 3 | |
| 4 | function App() { |
| 5 | return ( |
| 6 | <> |
| 7 | <h1>preact e2e</h1> |
| 8 | <TanStackDevtools |
| 9 | plugins={[ |
| 10 | { |
| 11 | name: 'Demo', |
| 12 | render: () => ( |
| 13 | <div data-testid="demo-plugin">demo plugin content</div> |
| 14 | ), |
| 15 | }, |
| 16 | ]} |
| 17 | /> |
| 18 | </> |
| 19 | ) |
| 20 | } |
| 21 | |
| 22 | render(<App />, document.getElementById('root')!) |
nothing calls this directly
no outgoing calls
no test coverage detected