15 lines
329 B
Plaintext
15 lines
329 B
Plaintext
|
|
<Button aria-describedby={id} variant="contained" onClick={handleClick}>
|
||
|
|
Open Popover
|
||
|
|
</Button>
|
||
|
|
<Popover
|
||
|
|
id={id}
|
||
|
|
open={open}
|
||
|
|
anchorEl={anchorEl}
|
||
|
|
onClose={handleClose}
|
||
|
|
anchorOrigin={{
|
||
|
|
vertical: 'bottom',
|
||
|
|
horizontal: 'left',
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<Typography sx={{ p: 2 }}>The content of the Popover.</Typography>
|
||
|
|
</Popover>
|