説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. });