parent
e93de0b67d
commit
eeb4d961d0
@ -0,0 +1 @@
|
|||||||
|
export const LOGIN = "LOGIN";
|
@ -0,0 +1,9 @@
|
|||||||
|
const initialState = {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
function rootReducer(state = initialState, action) {
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default rootReducer;
|
@ -0,0 +1,4 @@
|
|||||||
|
import { createStore } from "redux";
|
||||||
|
import rootReducer from "../reducers/index";
|
||||||
|
const store = createStore(rootReducer);
|
||||||
|
export default store;
|
Loading…
Reference in new issue