TodoPostModal.js 882 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
3
const TodoPostModal = () => {
  return (
    <>
4
      <div className="modal fade" id="postmodal" data-bs-backdrop="static" data-bs-keyboard="false" tabIndex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
Choi Ga Young's avatar
Choi Ga Young committed
5
6
7
        <div className="modal-dialog modal-dialog-centered">
          <div className="modal-content">
            <div className="modal-body">
Choi Ga Young's avatar
Choi Ga Young committed
8
              <p className="m-2 text-center" style={{ fontSize: "17px" }}>해당 일정을 내일로 미루시겠습니까?</p>
Choi Ga Young's avatar
Choi Ga Young committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
            </div>
            <div className="modal-footer p-1">
              <button type="button" className="btn btn-crimson btn-sm"></button>
              <button type="button" className="btn btn-secondary btn-sm"
                data-bs-dismiss="modal">아니요</button>
            </div>
          </div>
        </div>
      </div>
    </>
  )
}

export default TodoPostModal;