🚩 해당 글은 유튜브 The Net Ninja와 React 공식문서를
공부한 토대로 작성된 글입니다. 혹시라도 잘못된 글이 있다면
댓글로 알려주세요 🏃♀️🏃♀️
<button onClick={activateLasers}>
Activate Lasers
</button>
addEventListener
를 불러낼 필요없이 사용할 수 있다.function Form() {
function handleSubmit(e) {
e.preventDefault();
console.log('You clicked submit.');
}
return (
<form onSubmit={handleSubmit}>
<button type="submit">Submit</button>
</form>
);
}
arrow functions
const Home = () => {
const handleClickAgain = (name) => {
console.log(`hello ${name}!`);
}
return (
<div className="home">
<h2>Hompage</h2>
<button onClick={ (e) => handleClickAgain('kim',e) } type="button">
Click Me! Again!
</button>
</div>
);
}
Function.prototype.bind
<button onClick={this.deleteRow.bind(this, id)}>Delete Row</button>