https://ko.reactjs.org/docs/portals.html

개념

사용하는 이유

주의 사항

보통형태

const Potal = () => {

	return ReactDOM.createPortal(
    this.props.children,
    document.body
  );
}

모달

<html>
  <body>
    <div id="app-root"></div>
    <div id="modal-root"></div>
  </body>
</html>
return ReactDOM.createPortal(
    this.props.children,
    domNode
  );