import React from 'react' import { Row, Col } from 'antd'; import Page from '@/components/Page'; import Banner from './components/Banner'; import EscalationCharts from './components/EscalationCharts'; import AssignedCharts from './components/AssignedCharts'; import ProblemCharts from './components/ProblemCharts'; import SpotCharts from './components/SpotCharts'; export default (props) => { const chartStyle = { height: '260px', width: '100%', } const chartStyle2 = { height: '200px', width: '100%', } return ( ) }