So it roughly corresponds to this JS: ``` this.se...
# react
f
So it roughly corresponds to this JS:
Copy code
this.setState(prevState => ({
  foreColor: prevState.foreColor === "blue" ? "red" : "blue"
}))
👍 1