improve store and reducers

This commit is contained in:
Shin'ya Ueoka 2017-09-14 21:14:13 +09:00
parent 9dc02b2fd8
commit c42ac8fac4
3 changed files with 29 additions and 7 deletions

7
src/reducers/index.js Normal file
View file

@ -0,0 +1,7 @@
const defaultState = {
};
export default function reducer(state = defaultState/*, action = {}*/) {
return Object.assign({}, state, {
});
}