I want to trigger a ZoomOutDown to a component when a button fires. When I change the playState from "paused" to "running", nothing happens. Can you help how to do this?
`
<Animate
duration="1s"
iterationCount={100}
playState={animateState}
delay="1s"
Animation={[ZoomOutDown]}
>
<button
onClick={(e) => {
e.preventDefault();
setAnimateState("running");
}}
>
Click
</button>
</Animate>
`