Table in React
Table in React
key={applicationId}
rowData={{ applicationId, personId, studentName, applications,
attendancePatternCode, isChecked }}
// expandedRowContent={<ApplicantsDetailsExpansionPanel
applicantInfo={applications} />}
>
{/* <TableRow></TableRow> */}
{/* {showCheckBox && (
<TableCell component="th" scope="row" columnName={'checkBox'}>
<span>
<Checkbox
checked={checkIntermediate ? isChecked : checkAll}
id={`${customId}_CheckboxB_${index}`}
onChange={(e) => {
handleCheckBoxChange(e, index);
}}
value="isChecked"
inputProps={{
'aria-label': 'Checked B'
}}
/>
</span>
</TableCell>
)} */}
<TableCell component="th" scope="row" columnName={formatMessage({
id: 'Student-Id' })}>
<span>{personId}</span>
</TableCell>