You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get an error while using normal html tags inside <Menu>:
React does not recognize the eventKey prop on a DOM element.....
React does not recognize the warnKey prop on a DOM element.....
Easy reproduce
<Menu>
<div />
</Menu>
Funny but when you use React component it doens't have that problem, this doesn't throw anything:
const Comp = () = <div />
<Menu>
<Comp />
</Menu>
The text was updated successfully, but these errors were encountered:
I get an error while using normal html tags inside
<Menu>
:React does not recognize the
eventKey
prop on a DOM element.....React does not recognize the
warnKey
prop on a DOM element.....Easy reproduce
Funny but when you use React component it doens't have that problem, this doesn't throw anything:
The text was updated successfully, but these errors were encountered: