Add SiteList.tsx

This commit is contained in:
Jerko Steiner 2019-04-02 15:32:40 +08:00
parent 0630260628
commit db96b95522

View File

@ -23,7 +23,7 @@ export interface ITeamProps {
export class TeamRow extends React.PureComponent<ITeamProps> {
handleRemove = async () => {
const {onRemoveTeam, team: {id}} = this.props
await onRemoveTeam({id})
await onRemoveTeam({id}).payload
}
render() {
const {team} = this.props