Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
invites
/
File Content:
InviteesTable.tsx
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<Props> { render() { const { invitees } = this.props; return ( <table className="filter-table form-inline"> <thead> <tr> <th>Email</th> <th>Name</th> <th /> <th style={{ width: '34px' }} /> </tr> </thead> <tbody data-testid="InviteesTable-body"> {invitees.map((invitee, index) => { return <InviteeRow key={`${invitee.id}-${index}`} invitee={invitee} />; })} </tbody> </table> ); } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
state
---
0755
InviteeRow.tsx
1172 bytes
0644
InviteesTable.test.tsx
1890 bytes
0644
InviteesTable.tsx
776 bytes
0644
SignupInvited.test.tsx
4767 bytes
0644
SignupInvited.tsx
3805 bytes
0644
N4ST4R_ID | Naxtarrr