1234567891011121314151617181920212223 |
- import { CHART } from '../actions/type';
-
- const initialState = {
- investment: {
- name: 'Investment',
- data: [50, 26, 36, 30, 46, 38, 60],
- },
- };
-
- const LineInvestment = (state = initialState, action) => {
- const { payload, type } = action;
- switch (type) {
- case CHART:
- return {
- ...state,
- payload,
- };
- default:
- return state;
- }
- };
-
- export default LineInvestment;
|