import { CREATE_DISCUSSION } from '../actions/actionsTypes';
const initialState = {
isFetching: false,
failure: false,
result: {},
error: {}
};
export default function (state = initialState, action) {
switch (action.type) {
case CREATE_DISCUSSION.REQUEST:
return {
...state,
isFetching: true,
case CREATE_DISCUSSION.SUCCESS:
result: action.data
case CREATE_DISCUSSION.FAILURE:
failure: true,
error: action.err
default:
return state;
}