You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const[openModal,setOpenModal]=useState(false);//모달창 닫기constonClose=()=>{setOpenModal(false);};<Modaltitle="친구 추가"inputText="친구의 아이디를 입력하세요."onClick={onClick}type="submit"onClose={onClose}isOpen={openModal}/>
title : 모달창 표시 제목 inputText : 모달창 입력창 placeholder onClick : 확인 버튼 클릭 시 수행 함수 type : 모달창 버튼 type값 onClose : 모달창 닫기 isOpen : 모달창 상태useState onClose 및 isOpen은 구현할 곳에 직접 구현 후 사용
The text was updated successfully, but these errors were encountered:
구현 모습
구현 경로
/src/components/common/Modal.jsx
/src/components/common/Header.jsx
구현 내용
사용예시
title
: 모달창 표시 제목inputText
: 모달창 입력창placeholder
onClick
: 확인 버튼 클릭 시 수행 함수type
: 모달창 버튼type
값onClose
: 모달창 닫기isOpen
: 모달창 상태useState
onClose
및isOpen
은 구현할 곳에 직접 구현 후 사용The text was updated successfully, but these errors were encountered: