function Parent() {
function getData() {
alert("Hello from app component")
}
return (
<> <Child data={getData} /> </>
);
}
function Child(props) {
return(
<>
<button onClick={props.data}> Call Function </button>
</>
)
}
© www.thecoderjob.com. All Rights Reserved. Designed by HTML Codex