Was vaguely interesting -- until the parts about "racial heritage" and "the white man walking alone". Check out this guy's other posts for a surprise.
function Counter() {
const [counter, setCounter] = React.useState(0);
React.useEffect(() => {
const interval = setInterval(() => setCounter(n => n + 1), 100);
return () => clearInterval(interval);
}, [])
return (
<div>{counter}</div>
);
}