8 lines
223 B
Plaintext
8 lines
223 B
Plaintext
|
|
<Button onClick={handleOpen}>Show backdrop</Button>
|
||
|
|
<Backdrop
|
||
|
|
sx={(theme) => ({ color: '#fff', zIndex: theme.zIndex.drawer + 1 })}
|
||
|
|
open={open}
|
||
|
|
onClick={handleClose}
|
||
|
|
>
|
||
|
|
<CircularProgress color="inherit" />
|
||
|
|
</Backdrop>
|