React.js cheatsheet

PHOTO EMBED

Wed Jun 03 2020 16:25:04 GMT+0000 (Coordinated Universal Time)

Saved by @bmweinstein #jsx

function ExampleWithManyStates() {
  // Declare multiple state variables!
  const [age, setAge] = useState(42);
  const [fruit, setFruit] = useState('banana');
  const [todos, setTodos] = useState([{ text: 'Learn Hooks' }]);
  // ...
}
content_copyCOPY

https://devhints.io/react