()
| 4 | export default function Counter({ children }) { |
| 5 | const [count, setCount] = createSignal(0); |
| 6 | const add = () => setCount(count() + 1); |
| 7 | const subtract = () => setCount(count() - 1); |
| 8 | |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected