1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import moment from 'moment' let FileSaver = require('file-saver') const dashboardInitialState = { loading: false, error: null, } const dashboardReducer = (state = dashboardInitialState, action) => { switch(action.type) { default: return state } } export default dashboardReducer