I have a rendered output that maps each item I have from an array into a div like this
var renderedOutput = arr.map(item => <div key={item.portfolioName} style={portfolioStyle} onClick={handleClick}> {item.portfolioName} </div>)
Although the key={...} and style={...} inside the div work completely fine,
Using onClick={handleClick} does not?
How can I fix this?