import React, { useEffect, useState } from 'react' import { Spin, Popconfirm, message, Button, Input } from 'antd' import { connect } from 'react-redux' import ProTable from '@ant-design/pro-table' import moment from 'moment' import ReactEcharts from 'echarts-for-react' import PerfectScrollbar from 'perfect-scrollbar' import '../style.less' const Bottom = props => { const { dispatch, clientHeight, clientWidth, actions } = props return ( <> ) } function mapStateToProps(state) { const { auth, global } = state return { clientHeight: global.clientHeight, clientWidth: global.clientWidth, actions: global.actions, } } export default connect(mapStateToProps)(Bottom)