暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324
  1. import { CHART } from '../actions/type';
  2. const initialState = {
  3. expenses: {
  4. name: 'Expenses',
  5. youtube: [65, 59, 80, 81, 56, 55, 40,80, 81, 56, 55, 40],
  6. facebook: [40, 105, 92, 155, 138, 205, 120,92, 155, 138, 205, 120],
  7. },
  8. };
  9. const LineChart = (state = initialState, action) => {
  10. const { payload, type } = action;
  11. switch (type) {
  12. case CHART:
  13. return {
  14. ...state,
  15. payload,
  16. };
  17. default:
  18. return state;
  19. }
  20. };
  21. export default LineChart;