TodoModal.js 1.48 KB
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
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
const TodoModal = () => {
  return (
    <>
      <div className="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
        <div className="modal-dialog modal-dialog-centered">
          <div className="modal-content" style={{ backgroundColor: "crimson" }}>
            <div className="modal-header p-1" >
              <h5 className="modal-title text-white" id="staticBackdropLabel">To-do</h5>
              <button type="button" className="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <div className="modal-body" style={{ backgroundColor: "white" }}>
              <input type="text" name="todoTitle"
                className="form-control border-top-0 border-end-0 border-start-0"
                style={{ boxShadow: "none", borderRadius: "0" }}
                placeholder="제목" />
              <label className="form-label m-2">날짜 </label>
              <input type="date" value="2021-10-12" className="ms-4 mt-4" />
            </div>
            <div className="modal-footer p-1" style={{ backgroundColor: "white" }} >
              <button type="button" className="btn btn-secondary btn-sm"
                data-bs-dismiss="modal">취소</button>
              <button type="button" className="btn btn-crimson btn-sm">확인</button>
            </div>
          </div>
        </div>
      </div>
    </>
  )
}

export default TodoModal;