"onclick" attribute in anchor element inside react app – Reactjs
i want to create a react component which should render a tree of nodes, in which one of the element is supposed to be an anchor. The JSX would be: return( <div> <span>.....</span> <a href="someurl" onclick="javascript:....." ...somemore element </div> );…