import React, { useEffect, useState } from 'react'; import { connect } from 'react-redux'; import { Spin, Card } from 'antd'; import Build from './footer/build' import '../style.less'; import Header from './heand'; import Footer from './footer'; import ProTable, { TableDropdown } from '@ant-design/pro-table'; import Gis from './footer/gis/gis'; const MAPID = 'screenGis' const Example = (props) => { const { dispatch, actions, user, loading } = props const [tabKey, setTabKey] = useState('leadership') const [mapObj, setMapObj] = useState(); const tabChange = (tab) => { setTabKey(tab) // dispatch({ type: 'TAB-CHANGE', data: tab }) } return (
) } function mapStateToProps (state) { const { auth, global, members } = state; return { loading: members.isRequesting, user: auth.user, actions: global.actions, members: members.data }; } export default connect(mapStateToProps)(Example);