I want to have refs in functional component which have elements dynamically rendered.
please help me in creating Dynamic Refs using useRef Hook and accessing in the handler.
1) Need to create 3 useRefs to point 3 buttons.
2) Access them in button handler using "ref1.value" Or "ref2.value" etc
let abc=[1,2,3];
function submitclick(){
alert(123);
// Here i want to access the buttons with using the refs
}
return ( <div>
{ abc.map(function(index){ return (<button ref='123' onClick={submitclick}>{`Button${index}`}</button>)})}
</div>);
};
ReactDOM.render(<MyComponent name="doug" />, document.getElementById('root'));```