ENEI2019-Public/App/app/reducers/posts.js

8 lines
205 B
JavaScript
Raw Normal View History

2019-01-30 14:32:25 +00:00
import createReducer from '../Helpers/createReducer'
import * as types from '../actions/types'
export const currentPost = createReducer({}, {
[types.SET_POST](state, action) {
return action;
}
});