()
| 19 | }; |
| 20 | |
| 21 | export const DebuggerSwitcher = () => { |
| 22 | const page = useSelector((state) => state.dbg.page); |
| 23 | |
| 24 | switch (page) { |
| 25 | case "error": |
| 26 | return <Text />; |
| 27 | case "chart": |
| 28 | return <Chart />; |
| 29 | default: |
| 30 | return <Empty />; |
| 31 | } |
| 32 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected