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

9
10
const ToDoPage = () => {
    return (
11
12
13
        <>
            <Menu />
            <HomeBtn />
Choi Ga Young's avatar
Choi Ga Young committed
14
            <h1 className="text-center">To-do</h1>
Kim, Subin's avatar
Kim, Subin committed
15
            <Weekly />
Choi Ga Young's avatar
Choi Ga Young committed
16
            <div className="d-flex justify-content-between mt-3">
Kim, Subin's avatar
Kim, Subin committed
17
18
19
                <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
20
                </div>
Kim, Subin's avatar
Kim, Subin committed
21
                <div style={{ cursor: "pointer" }}>
Choi Ga Young's avatar
Choi Ga Young committed
22
                    <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
23
24
                    <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
25
                    <i className="bi bi-trash fs-5"></i>
26
                </div>
Choi Ga Young's avatar
Choi Ga Young committed
27
            </div>
Kim, Subin's avatar
Kim, Subin committed
28
            <Footer />
29
        </>
30
31
32
33
    )
}

export default ToDoPage