It does not detect when I'm mutating the state directly. #133
Closed
Description
opened on Jun 29, 2015
There's no error (or warning) for when I mutate the state instead of using setState.
so:
this.state.foo = "bar"
should yield an error, as opposed to
this.setState({foo: "bar"});
Activity