Answers for "react material modal custom backdrop"

1

react material modal custom backdrop

<Dialog
	onClose={handleClose}
    aria-labelledby="simple-dialog-title"
    open={open}
    PaperProps={{
      style: {
        // backgroundColor: 'transparent',
        boxShadow: 'none',
      },
    }}
    BackdropProps={{ style: { backgroundColor: "#FFFFFFAA" } }}
></Dialog>
Posted by: Guest on July-07-2021

Code answers related to "react material modal custom backdrop"

Code answers related to "Javascript"

Browse Popular Code Answers by Language