how to get the props ofa function onClick in react js code example
Example: using props in function component for onclick event
const HelloWorld = ({ dispatch }) => {
const handleClick = useCallback(() => {
dispatch(something())
})
return
}