HomePage.js 328 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
import Menu from "../components/Menu/Menu";
import Monthly from "../components/Calendar/Monthly";
import Footer from "../components/Footer";
4

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

export default HomePage