<div id="app"></div>
const App = () => {
const handlerFocus = () => {
window.alert('Focus');
}
return (
<div>
<input type="text" onFocus={ handlerFocus } />
</div>
)
}
const app = document.querySelector('#app');
const root = ReactDOM.createRoot(app);
root.render(<App />);
View Compiled
This Pen doesn't use any external CSS resources.