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