I use Table from material ui.
I do
<TableContainer>
<Table sx={{ width: "100%" }}>
<TableHead>
<TableRow>
<TableCell>test</TableCell>
<TableCell>Name</TableCell>
<TableCell>Required</TableCell>
</TableRow>
</TableHead>
<TableBody>
<TableRow>
<TableCell>foo</TableCell>
<TableCell>bar</TableCell>
</TableRow>
</TableBody>
</Table>
</TableContainer>
But table rendering is wrong.
Expected rendering is bar value are into name culunm