Update dropdonw menu

This commit is contained in:
rui hildt 2020-05-13 13:26:34 +02:00
parent 657a8bc450
commit 65af60c2ea
1 changed files with 4 additions and 7 deletions

View File

@ -13,15 +13,12 @@ function MenuDropdown() {
const MenuPopover = ({ onSelect, ...rest }) => (
<Popover {...rest} full>
<Dropdown.Menu onSelect={onSelect}>
<Dropdown.Item eventKey={1}>New File</Dropdown.Item>
<Dropdown.Item eventKey={1}>Dashboard</Dropdown.Item>
<Dropdown.Item eventKey={2}>
New File with Current Profile
Schedule a Meeting
</Dropdown.Item>
<Dropdown.Item eventKey={3}>Download As...</Dropdown.Item>
<Dropdown.Item eventKey={4}>Export PDF</Dropdown.Item>
<Dropdown.Item eventKey={5}>Export HTML</Dropdown.Item>
<Dropdown.Item eventKey={6}>Settings</Dropdown.Item>
<Dropdown.Item eventKey={7}>About</Dropdown.Item>
<Dropdown.Item eventKey={3}>Account Settings</Dropdown.Item>
<Dropdown.Item eventKey={4}>Log Out</Dropdown.Item>
</Dropdown.Menu>
</Popover>
);