diff --git a/src/index.js b/src/index.js index 846ed2c..9639a0f 100644 --- a/src/index.js +++ b/src/index.js @@ -2,10 +2,14 @@ import React from "react"; import ReactDOM from "react-dom"; import "./index.css"; import App from "./App"; +import { StateProvider } from "./redux/StateProvider"; +import reducer, { initialState } from "./redux/reducer"; ReactDOM.render( - + + + , document.getElementById("root") );