Skip to content

Instantly share code, notes, and snippets.

@rekomat
Created November 12, 2023 10:56
Show Gist options
  • Save rekomat/d2f9bc5f606c9b3211c19cc89a653b49 to your computer and use it in GitHub Desktop.
Save rekomat/d2f9bc5f606c9b3211c19cc89a653b49 to your computer and use it in GitHub Desktop.
React Cheatsheet

React Cheatsheet

Toggle state

const [isOn, setIsOn] = useState(false);

// ✔ do
const toggle = () => setIsOn(isOn => !isOn);

// ✘ don't
const toggle = () => setIsOn(!isOn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment