Open
Description
How can i use dynamic list of in
without modifying package
<NavGroup>
{results.map(function(result) {
return <NavGroupItem key={result.id} eventKey={result.id} glyph={result.glyph} text={result.title}>{result.text}</NavGroupItem>;
})}
</NavGroup>
that results like this
Uncaught TypeError: Cannot read property 'eventKey' of undefined
any suggestion?