import React, { PureComponent } from 'react'; import { Invitee } from 'app/types'; import InviteeRow from './InviteeRow'; export interface Props { invitees: Invitee[]; } export default class InviteesTable extends PureComponent { render() { const { invitees } = this.props; return ( {invitees.map((invitee, index) => { return ; })}
Email Name
); } }