리액트에서 Modal 기능 사용하기

리액트에서 Modal 기능 사용하기

- 패키지 설치

$ npm install react-modal $ yarn add react-modal

- 기본 설정

// App.js import React from "react"; import Modal from "react-modal"; const ModalPage = (props) => { const [modal, setModal] = React.useState(true); // 모달창 const modalOff = () => { setModal(false); }; return ( <> ); }; export default ModalPage;

- 실행 화면

- 출처

https://velog.io/@seungsang00/React-React-Modal

from http://eundol1113.tistory.com/320 by ccl(A) rewrite - 2021-12-27 13:27:22