console.clear();
import React from "https://esm.sh/react@19.0.0";
import ReactDOM from "https://esm.sh/react-dom@19.0.0/client";
import gsap from "https://esm.sh/gsap";
import { useGSAP } from "https://esm.sh/@gsap/react?deps=react@19.0.0";
const { useEffect, useRef, useState } = React;
gsap.registerPlugin(useGSAP);
function App() {
const app = useRef();
const box1 = useRef();
const box2 = useRef();
const box3 = useRef();
const [count, setCount] = useState(0);
const [delayedCount, setDelayedCount] = useState(0);
useGSAP(() => {
gsap.to(box1.current, { rotation: "+=360" });
});
useGSAP(() => {
gsap.to(box2.current, { rotation: "+=360" });
}, [delayedCount]);
useGSAP(() => {
gsap.to(box3.current, { rotation: "+=360" });
}, null);
useEffect(() => {
const timer = setTimeout(() => setDelayedCount(count), 500);
return () => clearTimeout(timer);
}, [count]);
return (
<div className="app" ref={app}>
<div>
<button onClick={() => setCount(count + 1)}>Click to trigger a render</button>
</div>
<p>Count: {count}</p>
<p>Delayed Count: {delayedCount}</p>
<p>Renders: {1 + delayedCount + count}</p>
<div className="flex-row">
<div ref={box1} className="box gradient-purple">First render</div>
<div ref={box2} className="box gradient-blue">First render & delayed count change</div>
<div ref={box3} className="box gradient-red">Every render</div>
</div>
</div>
);
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
View Compiled