UNPKG

react-vaccine

Version:
18 lines (14 loc) 278 B
export default class MockState { deepClone(state) { return Object.assign({}, state); //Temporary } setState(state) { this.state = this.deepClone(state); } setDispatch(dispatch) { this.dispatch = dispatch; } getState() { return this.state; } }