(clock)
| 9 | let execute = masterClock === lastClock(); |
| 10 | |
| 11 | function active(clock) { |
| 12 | return ''; |
| 13 | return clock === lastClock() && 'hidden'; |
| 14 | } |
| 15 | |
| 16 | return ( |
| 17 | <div className={ `duration-500 ${ active(clock) }` }> |
nothing calls this directly
no test coverage detected