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

8 lines
205 B
JavaScript

import createReducer from '../Helpers/createReducer'
import * as types from '../actions/types'
export const currentPost = createReducer({}, {
[types.SET_POST](state, action) {
return action;
}
});