react hooks on function code example
Example 1: react hooks
const [state, setState] = useState(initialState);
Example 2: react hooks
function ExampleWithManyStates() {
// Declare multiple state variables!
const [age, setAge] = useState(42);
const [fruit, setFruit] = useState('banana');
const [todos, setTodos] = useState([{ text: 'Learn Hooks' }]);
// ...
}