React JS - 다른 컴포넌트에서 컴포넌트 메서드 호출 컴포넌트는 2개입니다.두 번째 컴포넌트에서 첫 번째 컴포넌트의 메서드를 호출하고 싶습니다.어떻게 해야 하죠? 여기 제 코드가 있습니다. 첫 번째 컴포넌트 class Header extends React.Component{ constructor(){ super(); } checkClick(e, notyId){ alert(notyId); } } export default Header; 두 번째 컴포넌트 class PopupOver extends React.Component{ constructor(){ super(); // here i need to call Header class function check click.... // How to call..