ToDoPage.js 1.41 KB
Newer Older
1
2
import Menu from "../components/Menu/Menu.js";
import HomeBtn from "../components/Buttons/HomeBtn.js";
Choi Ga Young's avatar
Choi Ga Young committed
3
import TodoModal from "../components/Modal/TodoModal.js";
Choi Ga Young's avatar
Choi Ga Young committed
4
import TodoPostModal from "../components/Modal/TodoPostModal.js";
Kim, Subin's avatar
Kim, Subin committed
5
6
import Footer from "../components/Footer.js";
import styles from "../components/Form/form.module.scss";
7

8
9
const ToDoPage = () => {
    return (
10
11
12
        <>
            <Menu />
            <HomeBtn />
Choi Ga Young's avatar
Choi Ga Young committed
13
            <h1 className="text-center">To-do</h1>
14
            <div>
Choi Ga Young's avatar
Choi Ga Young committed
15
16
17
                캘린더 자리
            </div>
            <div className="d-flex justify-content-between mt-3">
Kim, Subin's avatar
Kim, Subin committed
18
19
20
                <div className="d-flex align-items-center">
                    <input className={`form-check-input rounded-0 shadow-none mt-0 ${styles.checkBox}`} type="checkbox" />
                    <label className={`form-check-label fs-5 ms-3 ${styles.title}`}>과제03 제출하기sadsa</label>
Choi Ga Young's avatar
Choi Ga Young committed
21
                </div>
Kim, Subin's avatar
Kim, Subin committed
22
                <div style={{ cursor: "pointer" }}>
Choi Ga Young's avatar
Choi Ga Young committed
23
                    <i class="bi bi-arrow-right pe-2 fs-5" data-bs-toggle="modal" data-bs-target="#postmodal"><TodoPostModal /></i>
Kim, Subin's avatar
Kim, Subin committed
24
25
                    <i className="bi bi-pencil-square pe-2 fs-5" data-bs-toggle="modal" data-bs-target="#staticBackdrop"></i>
                    <TodoModal />
Choi Ga Young's avatar
Choi Ga Young committed
26
                    <i className="bi bi-trash fs-5"></i>
27
28
                </div>
            </div>
Kim, Subin's avatar
Kim, Subin committed
29
            <Footer />
30
        </>
31
32
33
34
    )
}

export default ToDoPage