<div id="app"></div>
const app = document.querySelector('#app');
const root = ReactDOM.createRoot(app);
const App = () => {
const sayHi = () => {
window.alert('Hello Ray.')
}
return (
<a href="https://israynotarray.com/" onClick={ sayHi }>點我</a>
)
};
root.render(<App />);
View Compiled
This Pen doesn't use any external CSS resources.