ToDoPage.js 500 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
import Menu from "../components/Menu/Menu";
import HomeBtn from "../components/Buttons/HomeBtn";
import Weekly from "../components/Calendar/Weekly";
import TodoList from "../components/TodoList";
import Footer from "../components/Footer";
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