Lint the reducer index

This commit is contained in:
Grégoire Delattre 2017-06-02 21:19:50 +02:00
parent d144d0a982
commit 50ae9c7a25

View File

@ -1,12 +1,12 @@
import { combineReducers } from 'redux'; import { combineReducers } from "redux";
import { routerReducer } from 'react-router-redux' import { routerReducer } from "react-router-redux"
import movieStore from './movies' import movieStore from "./movies"
import showsStore from './shows' import showsStore from "./shows"
import showStore from './show' import showStore from "./show"
import userStore from './users' import userStore from "./users"
import alerts from './alerts' import alerts from "./alerts"
import torrentStore from './torrents' import torrentStore from "./torrents"
const rootReducer = combineReducers({ const rootReducer = combineReducers({
routing: routerReducer, routing: routerReducer,