onClick button react send to another component

JavaScript
import React from 'react';

const App = () => {
  
const message = () => {
 console.log("Hello World!") 
}

return (
<button onClick={message}> Press me to print a message! </button>
  );
}<div>Hello</div>
Source

Also in JavaScript: