Issue 225: Add basic structure for Incidents Component

This commit is contained in:
terryjung0244
2024-07-01 22:30:57 -04:00
parent 11c1819951
commit c8cdcd88a6
3 changed files with 32 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
.maintenance-checklist-card {
max-width: 314;
margin: auto;
padding: 2;
box-shadow: 3;
}
.maintenance-checklist-box {
height: 100;
background-color: grey;
border-radius: 1px;
margin-bottom: 2px;
}
+15 -6
View File
@@ -1,9 +1,18 @@
import React from 'react'
import React from "react";
import { Card, CardContent, Box, Typography, Button } from "@mui/material";
const Incidents = () => {
return (
<div>Incidents</div>
)
}
return (
<Card>
<CardContent>
<Box />
<Typography>Create a maintenance window to</Typography>
</CardContent>
<Box>
<Button>Let&apos;s create your maintenance window</Button>
</Box>
</Card>
);
};
export default Incidents
export default Incidents;
+4 -6
View File
@@ -1,9 +1,7 @@
import React from 'react'
import React from "react";
const Status = () => {
return (
<div>Status</div>
)
}
return <div>Status</div>;
};
export default Status
export default Status;