7 lines
187 B
Plaintext
7 lines
187 B
Plaintext
|
|
<Button onClick={handleClick}>Open Snackbar</Button>
|
||
|
|
<Snackbar
|
||
|
|
open={open}
|
||
|
|
autoHideDuration={5000}
|
||
|
|
onClose={handleClose}
|
||
|
|
message="This Snackbar will be dismissed in 5 seconds."
|
||
|
|
/>
|