Nhận máy chủ React của riêng bạn
 import React from 'react'; import ReactDOM from 'react-dom/client'; function Football() { const shoot = () => { alert("Great Shot!"); } return ( <button onClick={shoot}>Take the shot!</button> ); } const root = ReactDOM.createRoot(document.getElementById('root')); root.render(<Football />);
máy chủ cục bộ: 3000