Compare commits

..

No commits in common. "e56f0e4e5d373d63dea953dd0d4d2b4569817088" and "56e07bc2ef867df7d9e6458bb72899a8eae74faa" have entirely different histories.

3 changed files with 6 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "journal.pl", "name": "journal.pl",
"version": "3.5.0", "version": "3.4.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "journal.pl", "name": "journal.pl",
"version": "3.5.0", "version": "3.4.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@brojs/cli": "^0.0.4-beta.0", "@brojs/cli": "^0.0.4-beta.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "journal.pl", "name": "journal.pl",
"version": "3.5.0", "version": "3.4.1",
"description": "bro-js platform journal ui repo", "description": "bro-js platform journal ui repo",
"main": "./src/index.tsx", "main": "./src/index.tsx",
"scripts": { "scripts": {

View File

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