import React from 'react' class GroupList extends React.PureComponent { state = { showModal: false, params: {} } render () { const { location } = this.props console.log(location, '----') return (
hhhh {location.state.name}
) } } export default GroupList