Found: object with keys
Which means you passing something is a key-value. So you need to modify your handler:
fromonItemClick(e, item) {
this.setState({
lang: item,
});
}
to
onItemClick({e, item}) {
this.setState({
lang: item,
});
}
You missed out the braces ({}
).