Interactive visualization of JSX parsing and React Fiber reconciliation process with animated data flow
function App() {
const [count, setCount] = useState(0);
return (
<div className="container">
<h1>Counter: {count}</h1>
<button onClick={() => setCount(count + 1)}>
Increment
</button>
</div>
);
}