ToDoPage.js 507 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 Footer from "../components/Footer.js";
4
import TodoList from "../components/TodoList.js";
5

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

export default ToDoPage