This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Libs | |
import { compose, createStore, applyMiddleware, combineReducers } from "redux"; | |
import thunkMiddleware from "redux-thunk"; | |
import { autoRehydrate } from 'redux-persist'; | |
import * as SWRTC from "@andyet/simplewebrtc"; | |
// Reducers | |
import Dashboard from "./modules/dashboard-module"; | |
import Authentication from "./modules/authentication-module"; |