Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 10 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import echarts from 'echarts'; |
||
2 | import Core from './core'; |
||
3 | |||
4 | // export the Component the echarts Object. |
||
5 | export default class EchartsReact extends Core { |
||
6 | constructor(props) { |
||
7 | super(props); |
||
8 | this.echartsInstance = echarts; |
||
9 | } |
||
10 | } |
||
11 |