()
| 18 | import { append } from "./page/chart/ChartSlice"; |
| 19 | |
| 20 | const Spinner = () => { |
| 21 | return ( |
| 22 | <img |
| 23 | alt="" |
| 24 | className={styles.spinner} |
| 25 | src="https://i.pinimg.com/originals/3e/f0/e6/3ef0e69f3c889c1307330c36a501eb12.gif" |
| 26 | /> |
| 27 | ); |
| 28 | }; |
| 29 | |
| 30 | const SwitchButton = (is_on, off, on, onClick, disabled) => { |
| 31 | return is_on ? ( |
nothing calls this directly
no outgoing calls
no test coverage detected