HomePage.js 337 Bytes
Newer Older
1
import Menu from "../components/Menu/Menu.js";
Kim, Subin's avatar
Monthly    
Kim, Subin committed
2
import Monthly from "../components/Calendar/Monthly.js";
3
import Footer from "../components/Footer.js";
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