Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- androidstudio
- 코딩테스트
- 스킬체크
- 프로그래머스
- bootstrapModal
- 동적웹페이지
- 월간코드챌린지시즌2
- java
- Fullcalendar
- REACT
- php
- AJAX
- level1
- 안드로이드
- bootstrap
- 부트스트랩
- 나머지가1
- 코딩테스트연습
- SimpleDateFormat
- Node
- 백준
- modal
- 모달
- 스킬체크테스트
- Android
- 월간코드챌린지시즌3
- 연습문제
- Summer/WinterCoding
- MSSQL
- Programmers
Archives
- Today
- Total
개발하는 고양이 오이
4. [React] BootStrap Modal 이용 (Button 클릭 시 Modal) 본문
안녕하세요. 오늘은 BootStrap을 이용하여 Button을 클릭했을 때 Modal 화면이 뜨게 하는 부분을 공유하고자 합니다.
※ BootStrap Button 이용 방법 참고
3. [React] BootStrap Button, Modal 이용
※ BootStrap Modal 공식 문서
https://react-bootstrap.netlify.app/components/modal/
① (BootStrap 모듈 미 설치 시 ) BootStrap 모듈 설치
npm install react-bootstrap bootstrap
② 적용
import React, { useState } from 'react';
import Button from 'react-bootstrap/Button';
import Modal from 'react-bootstrap/Modal';
import 'bootstrap/dist/css/bootstrap.min.css';
import './MyButton.css';
function MyButton() {
const [show, setShow] = useState(false);
const handleClose = () => setShow(false);
const handleShow = () => setShow(true);
return(
<div>
<Button className="btn" variant="outline-primary" onClick={handleShow}>outline-primary</Button>
<Modal show={show} onHide={handleClose}>
<Modal.Header>
<Modal.Title>버튼</Modal.Title>
</Modal.Header>
<Modal.Body>데이터</Modal.Body>
<Modal.Footer>
<Button className="btn_close" variant="secondary" onClick={handleClose}>
닫기
</Button>
</Modal.Footer>
</Modal>
</div>
)
}
export default MyButton;
import './App.css';
import MyButton from './MyButton';
function App() {
return (
<div className="App">
<MyButton />
</div>
);
}
export default App;
④ 실행
npm start