Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 311 Bytes

alertHelloWorld.md

File metadata and controls

25 lines (20 loc) · 311 Bytes
order title
0
zh-CN en-US
helloWord
helloWord

zh-CN

这就是个helloWorld

en-US

This is helloWorld

let handleClick = () => {
  alert("hello world");
};

ReactDOM.render(
  <div>
    <button type="primary" onClick={handleClick}>Hello World</button>
  </div>
, mountNode);