diff --git a/apps/applicant-tracking/src/components/ApplicantListItem/index.tsx b/apps/applicant-tracking/src/components/ApplicantListItem/index.tsx new file mode 100644 index 0000000..8c57ea3 --- /dev/null +++ b/apps/applicant-tracking/src/components/ApplicantListItem/index.tsx @@ -0,0 +1,31 @@ +import { ApplicantResponse } from '@hack4impact-utk/internal-models'; +import { Chip, TableCell, TableRow } from '@mui/material'; +import LaunchIcon from '@mui/icons-material/Launch'; +import Button from '@mui/material/Button'; +interface ApplicantListItemProps { + applicant: ApplicantResponse; +} +//Each row should display the applicant name (first and last), status, NetID and application +export default function ApplicantListItem(props: ApplicantListItemProps) { + return ( + + + {props.applicant.firstName} {props.applicant.lastName} + + + + + {props.applicant.netid} + + + + + ); +}