inakianduaga / redux-state-history

Redux store enhancers for tracking and visualizing state changes
http://inakianduaga.github.io/redux-state-history-example/
MIT License
91 stars 7 forks source link

Missing comma in README.md #13

Closed m3talstorm closed 8 years ago

m3talstorm commented 8 years ago
const finalCreateStore = compose(
  applyMiddleware(thunk),
  applyMiddleware(createLogger()),
  trackHistory()                              // STATE HISTORY STORE ENHANCER (DO NOT INCLUDE ON PRODUCTION)
  DevTools.instrument()
)(createStore);

Missing comma after trackHistory() :)

PR incoming,