SchedulePage.js 428 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 DateView from "../components/Calendar/DateView.js";
4
import Footer from "../components/Footer.js";
5

Kim, Subin's avatar
Kim, Subin committed
6
7
const SchedulePage = () => {
    return (
8
9
10
        <>
            <Menu />
            <HomeBtn />
Kim, Subin's avatar
Kim, Subin committed
11
            <DateView />
12
            <Footer pathname="schedule/edit" />
13
        </>
Kim, Subin's avatar
Kim, Subin committed
14
15
16
17
    )
}

export default SchedulePage