[React] 간단한 모달 띄우기
2023. 6. 14. 20:24
프로그래밍/React
리액트 모달 띄우기 react-modal 라이브러리를 활용한 간단한 모달 띄우기 react-modal 설치 npm install react-modal Modal 컴포넌트 설치 import React, { useState } from 'react'; import Modal from 'react-modal'; const ModalExample = () => { const [modalIsOpen, setModalIsOpen] = useState(false); const openModal = () => { setModalIsOpen(true); }; const closeModal = () => { setModalIsOpen(false); }; return ( 모달 열기 모달 제목 모달 내용 닫기 ); }; ex..