Хук состояния (useState)
function Counter (props) {
const [count, setCounter] = useState(0);
return (
<Button onClick={() => setCounter(count + 1)}>Count {count} </Button>
);
} // Объявляем несколько переменных состояния!
const [name, setName] = useState('James');
const [age, setAge] = useState(32);
const [todos, setTodos] = useState([{ text: 'Изучить хуки' }]);
// ...Last updated