Skip to content

Instantly share code, notes, and snippets.

@pfftdammitchris
Created November 14, 2022 06:31
Show Gist options
  • Save pfftdammitchris/dd0733cd1210f21015a56057bfa7a069 to your computer and use it in GitHub Desktop.
Save pfftdammitchris/dd0733cd1210f21015a56057bfa7a069 to your computer and use it in GitHub Desktop.
function notifySubscribers(...args) {
subscribers.forEach((fn) => fn(...args))
}
function setBackgroundColor(color) {
setState((prevState) => ({
...prevState,
backgroundColor: color,
}))
}
function addProfile(profile) {
setState((prevState) => ({
...prevState,
profiles: prevState.profiles.concat(profile),
}))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment