forked from Gitlink/forgeplus-react
21 lines
444 B
JavaScript
21 lines
444 B
JavaScript
import React from 'react';
|
|
import './Index.scss';
|
|
import 'echarts/lib/component/tooltip';
|
|
import 'echarts/lib/component/title';
|
|
import 'echarts/lib/component/legend'
|
|
import 'echarts/lib/component/markPoint';
|
|
|
|
import Pie from '../Echart/Pie';
|
|
import Cloud from '../Echart/Cloud';
|
|
import Radar from '../Echart/Radar';
|
|
|
|
function Index() {
|
|
return(
|
|
<div>
|
|
<Pie />
|
|
<Cloud />
|
|
<Radar />
|
|
</div>
|
|
)
|
|
}
|
|
export default Index; |