Skip to content

Instantly share code, notes, and snippets.

@Harshmakadia
Created November 3, 2018 05:46
Show Gist options
  • Save Harshmakadia/e8b687be2d1e1ab49ab6ab2a1d691271 to your computer and use it in GitHub Desktop.
Save Harshmakadia/e8b687be2d1e1ab49ab6ab2a1d691271 to your computer and use it in GitHub Desktop.
Mutliple state Hooks
function ExampleWithManyStates() {
// Declare multiple state variables!
const [age, setAge] = useState(42);
const [fruit, setFruit] = useState('banana');
const [todos, setTodos] = useState([{ text: 'Learn Hooks' }]);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment