no width limit in attendance

This commit is contained in:
Primakov Alexandr Alexandrovich 2024-11-06 12:52:29 +03:00
parent 56e07bc2ef
commit 5c13ca1cac

View File

@ -50,7 +50,7 @@ export const Attendance = () => {
} }
return ( return (
<Container maxW="container.xl"> <Box>
<Box mt={12} mb={12}> <Box mt={12} mb={12}>
<Heading>{courseInfo.name}</Heading> <Heading>{courseInfo.name}</Heading>
</Box> </Box>
@ -83,7 +83,6 @@ export const Attendance = () => {
</tbody> </tbody>
</table> </table>
</Box> </Box>
{/* <pre>{JSON.stringify(attendance, null, 2)}</pre> */} </Box>
</Container>
) )
} }