ToDoPage.js 515 Bytes
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";
4
import TodoList from "../components/TodoList.js";
Kim, Subin's avatar
Kim, Subin committed
5
import Footer from "../components/Footer.js";
6

7
8
const ToDoPage = () => {
    return (
9
10
11
        <>
            <Menu />
            <HomeBtn />
Choi Ga Young's avatar
Choi Ga Young committed
12
            <h1 className="text-center">To-do</h1>
Kim, Subin's avatar
Kim, Subin committed
13
            <Weekly />
Kim, Subin's avatar
Kim, Subin committed
14
            <TodoList />
Kim, Subin's avatar
Kim, Subin committed
15
            <Footer />
16
        </>
17
18
19
20
    )
}

export default ToDoPage