1234567891011121314151617 |
- import React, { Component } from 'react';
-
- // 引入 ECharts 主模块
- import echarts from 'echarts/lib/echarts';
- // 引入柱状图
- import 'echarts/lib/chart/bar';
- // 引入提示框和标题组件
- import 'echarts/lib/component/tooltip';
- import 'echarts/lib/component/title';
- class Chart extends Component {
-
- render() {
- return ( <div></div> );
- }
- }
-
- export default Chart;
|