40 lines
1015 B
TypeScript
40 lines
1015 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import Popover from '@mui/material/Popover';
|
||
|
|
import Typography from '@mui/material/Typography';
|
||
|
|
import Button from '@mui/material/Button';
|
||
|
|
|
||
|
|
export default function BasicPopover() {
|
||
|
|
const [anchorEl, setAnchorEl] = React.useState<HTMLButtonElement | null>(null);
|
||
|
|
|
||
|
|
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
|
||
|
|
setAnchorEl(event.currentTarget);
|
||
|
|
};
|
||
|
|
|
||
|
|
const handleClose = () => {
|
||
|
|
setAnchorEl(null);
|
||
|
|
};
|
||
|
|
|
||
|
|
const open = Boolean(anchorEl);
|
||
|
|
const id = open ? 'simple-popover' : undefined;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<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>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|