CLOSER-Cohorts/archivist

View on GitHub
react/src/components/Store.js

Summary

Maintainability
A
0 mins
Test Coverage
import { applyMiddleware, createStore } from "redux";
import reducers from "./../reducers";
import thunk from "redux-thunk"

export default createStore(reducers, applyMiddleware(thunk));