Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

root.js 261B

1234567891011
  1. import { combineReducers } from 'redux';
  2. import LineChart from './lineChart';
  3. import DoughnutChart from './doughnutChart';
  4. import LineInvestment from './lineInvestment'
  5. export default combineReducers({
  6. LineChart,
  7. DoughnutChart,
  8. LineInvestment
  9. });