()
| 17 | const [index, set] = useState(0); |
| 18 | |
| 19 | const onClick = () => set(state => (state + 1) % 3); |
| 20 | |
| 21 | const transitions = useTransition(index, { |
| 22 | from: { transform: 'translate3d(100%,0,0)' }, |
nothing calls this directly
no outgoing calls
no test coverage detected