()
| 10 | }, []) |
| 11 | |
| 12 | const toggle = () => { |
| 13 | if (!theme) return |
| 14 | const next = theme === "dark" ? "light" : "dark" |
| 15 | applyTheme(next) |
| 16 | setTheme(next) |
| 17 | } |
| 18 | |
| 19 | if (theme === null) { |
| 20 | return <IconButton aria-label="Loading theme..." name="SunMoon" /> |
nothing calls this directly
no test coverage detected
searching dependent graphs…