Home

Animate Anything

Demo

With Auto Animate

Installation

With Auto Animate

Animate

With Auto Animate

Step

 function Example() {
// A comment!
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
} 

Step

 function Example() {
// A comment! const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me </button>
</div>
);
} 

Step

 function test() { }