Cute Spinning Flower Blue
React | State와 Props 데이터 관리
·
FE/React & Redux
State (상태)특정 React 컴포넌트 안에서 사용하는 데이터 (변경가능)class MyComponent extends Component { state = {상태이름:상태값} componentMethod = () => { this.setState({상태이름 :새로운 상태값}) } render(){ return (표시할 요소, 컴포넌트) }}function MyComponent(){ const[상태, 상태변경함수] = useState(상태값) const componentMethod = () => { 상태변경함수(새로운 상태값) } return(표시할 요소, 컴포넌트)} 상태 변경 함수를 사용하지 않으면, React는 상태 변경을 감지하지 못한다  쓸대없이 화면 업데이..