what happened to me, can u tell me what 2 do?
I am creating a website that needs hooks to replace the state. I am on my index.js. the error is on the onClicks inside the divs inside the Menu. Menu es from material-UI
My code:
import Button from '@material-ui/core/Button';
import Menu from '@material-ui/core/Menu';
import MenuItem from '@material-ui/core/MenuItem';
export default function SimpleMenu() {
const [ anchorEl, setAnchorEl ] = React.useState<null | HTMLElement>(null);
const [ language, setLanguage ] = useState('English');
const languages = [ 'English', 'Chinese ( Simplified )', 'Chinese ( Traditional )' ];
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
setAnchorEl(event.currentTarget);
};
const handleClose = (word: string) => {
setLanguage(word);
};
return (
<div>
<Button aria-controls="simple-menu" aria-haspopup="true" onClick={handleClick}>
Open Menu
</Button>
<Menu id="simple-menu" anchorEl={anchorEl} keepMounted open={Boolean(anchorEl)} onClose={handleClose}>
<div onClick={handleClose(languages[0])}>{languages[0]}</div>
<div onClick={handleClose(languages[1])}>{languages[1]}</div>
<div onClick={handleClose(languages[2])}>{languages[2]}</div>
</Menu>
</div>
);
}
----------
error:
```Type 'void' is not assignable to type '(event: MouseEvent<HTMLDivElement, MouseEvent>) => void'.```
can u please help me?
( bottom is gibberish )
what happened to me, can u tell me what 2 do?
I am creating a website that needs hooks to replace the state. I am on my index.js. the error is on the onClicks inside the divs inside the Menu. Menu es from material-UI
My code:
import Button from '@material-ui/core/Button';
import Menu from '@material-ui/core/Menu';
import MenuItem from '@material-ui/core/MenuItem';
export default function SimpleMenu() {
const [ anchorEl, setAnchorEl ] = React.useState<null | HTMLElement>(null);
const [ language, setLanguage ] = useState('English');
const languages = [ 'English', 'Chinese ( Simplified )', 'Chinese ( Traditional )' ];
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
setAnchorEl(event.currentTarget);
};
const handleClose = (word: string) => {
setLanguage(word);
};
return (
<div>
<Button aria-controls="simple-menu" aria-haspopup="true" onClick={handleClick}>
Open Menu
</Button>
<Menu id="simple-menu" anchorEl={anchorEl} keepMounted open={Boolean(anchorEl)} onClose={handleClose}>
<div onClick={handleClose(languages[0])}>{languages[0]}</div>
<div onClick={handleClose(languages[1])}>{languages[1]}</div>
<div onClick={handleClose(languages[2])}>{languages[2]}</div>
</Menu>
</div>
);
}
----------
error:
```Type 'void' is not assignable to type '(event: MouseEvent<HTMLDivElement, MouseEvent>) => void'.```
can u please help me?
( bottom is gibberish )
Share
Improve this question
edited Jun 20, 2020 at 9:12
CommunityBot
11 silver badge
asked Jan 9, 2020 at 10:28
da coconutda coconut
8632 gold badges9 silver badges11 bronze badges
1
- 1 Does this answer your question? Type 'void' is not assignable to type '((event: MouseEvent<HTMLInputElement>) => void) | undefined' – vhs Commented Mar 2, 2021 at 5:57
2 Answers
Reset to default 7Change onClick={handleClose(languages[0])}
into arrow function like this
onClick={() => handleClose(languages[0])}
Or change handleClose function
const handleClose = () => (word: string) => {
setLanguage(word);
};
Hey hope this solves your problem: First write the onClick on your button like this:
<Button
aria-controls="simple-menu"
aria-haspopup="true"
onClick={() => handleClick(event as MouseEvent)}
>
Open Menu
</Button>
Then write your handleClick like this:
const handleClick = (event: MouseEvent) => {
setAnchorEl(event.currentTarget);
};
Might not be the best solution but I think it solves your problem :)