React-Hooks 예제
JavaScript ReactReact-Hooks(cont.d)
// counter 예제
import { useState } from 'react'
function New(){
const [count, setCount] = useState(0) // state로 컴포넌트 변수 만들기
function handleClick(){
setCount(count + 1) // count수가 증가하며 화면에 반영됨
}
return(
<div>
<h1>{count}</h1>
<button onClick={handleClick}>Increment!</button>
</div>
)
}
export default New