Starts using redux store for storing the date

This commit is contained in:
Sofiya Tepikin
2019-08-04 21:29:14 +02:00
parent 216a9044cd
commit c226923759
19 changed files with 311 additions and 66 deletions
+11
View File
@@ -0,0 +1,11 @@
import { combineReducers, createStore } from "redux"
import date from "./slices/date"
const reducer = combineReducers({
date
})
const store = createStore(reducer)
export default store