Reactjs – Local DOM Events with React
Does React help me with local events that are not related with the state? Consider the following HTML example. <p id="func_123">it is me</p> <p><span onmouseover="document.getElementById('func_123').style.color='orange'")> There </span> you are.</p> I try to do this in React. But I don't want…