1. useState - 상태 관리 (State Management) useState는 컴포넌트의 상태를 선언하고 관리할 때 사용되는 React 훅입니다. 상태란 사용자 입력, API 응답 데이터, 컴포넌트 내의 동적 값을 의미합니다. 사용법:const [state, setState] = useState(initialValue); • state: 현재 상태 값. • setState: 상태 값을 업데이트하는 함수. • initialValue: 상태의 초기 값. 예제:import React, { useState } from "react";const Counter = () => { const [count, setCount] = useState(0); // count의 초기값은 0 const handleI..