I am trying to trigger a start function in a different componentB when I click the start button in componentA
Note: Both components are neither parent to child components
Component A
import React from "react"
function ComponentA(props) {        
  return (
    <div>
      <button>Start</button>
    </div>
  )
}
export default ComponentA; 
Component B
import React from "react";
function ComponentB(props) {
  const [isStarted, setStarted] = React.useState(false);
  const start = () => setStarted(true);
  return <div>{isStarted ? "Starting..." : "Not Starting.."}</div>;
}
export default ComponentB;
 
    