11 lines
301 B
Plaintext
11 lines
301 B
Plaintext
|
|
<Button onClick={handleClick}>Open Snackbar</Button>
|
||
|
|
<Snackbar open={open} autoHideDuration={6000} onClose={handleClose}>
|
||
|
|
<Alert
|
||
|
|
onClose={handleClose}
|
||
|
|
severity="success"
|
||
|
|
variant="filled"
|
||
|
|
sx={{ width: '100%' }}
|
||
|
|
>
|
||
|
|
This is a success Alert inside a Snackbar!
|
||
|
|
</Alert>
|
||
|
|
</Snackbar>
|