74 lines
1.7 KiB
JavaScript
74 lines
1.7 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Box from '@mui/material/Box';
|
|
import Button from '@mui/material/Button';
|
|
import Modal from '@mui/material/Modal';
|
|
|
|
const style = {
|
|
position: 'absolute',
|
|
top: '50%',
|
|
left: '50%',
|
|
transform: 'translate(-50%, -50%)',
|
|
width: 400,
|
|
bgcolor: 'background.paper',
|
|
border: '2px solid #000',
|
|
boxShadow: 24,
|
|
p: 4,
|
|
};
|
|
|
|
export default function BasicModal() {
|
|
|
|
const [open, setOpen] = React.useState(false);
|
|
const handleOpen = () => setOpen(true);
|
|
const handleClose = () => setOpen(false);
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Basic Modal
|
|
</Typography>
|
|
|
|
<Button
|
|
onClick={handleOpen}
|
|
variant="contained"
|
|
className="whiteColor"
|
|
>
|
|
Open Modal
|
|
</Button>
|
|
|
|
<Modal
|
|
open={open}
|
|
onClose={handleClose}
|
|
aria-labelledby="modal-modal-title"
|
|
aria-describedby="modal-modal-description"
|
|
>
|
|
<Box sx={style} className="bg-black">
|
|
<Typography id="modal-modal-title" variant="h6" component="h2">
|
|
Text in a modal
|
|
</Typography>
|
|
<Typography id="modal-modal-description" sx={{ mt: 2 }}>
|
|
Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
|
|
</Typography>
|
|
</Box>
|
|
</Modal>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|