mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-23 02:29:30 -05:00
Issue 225: Add basic structure for Incidents Component
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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's create your maintenance window</Button>
|
||||
</Box>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
export default Incidents
|
||||
export default Incidents;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user