import React,{useState} from 'react';
import './App.css';
function App() {
const [count2, setCount2] = useState(0);
// const [현재값 , 변화될 값] = useState(초기값)
const inc = () => {
setCount2(count2 + 1)
}
return(
<div id="wrap">
<div>state:{count2}</div>
<button type="button" onClick={inc}>증가</button>
</div>
)
}
export default App;
'react' 카테고리의 다른 글
[react]배열 추출하기 (0) | 2022.06.08 |
---|---|
[react]리액트 시작하기 (0) | 2022.05.19 |