import * as React from 'react'; import Button from '@mui/joy/Button'; import Modal from '@mui/joy/Modal'; import ModalClose from '@mui/joy/ModalClose'; import Typography from '@mui/joy/Typography'; import Sheet from '@mui/joy/Sheet'; export default function BasicModal() { const [open, setOpen] = React.useState(false); return ( setOpen(false)} sx={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }} > This is the modal title Make sure to use aria-labelledby on the modal dialog with an optional aria-describedby attribute. ); }