HomePage.js 256 Bytes
Newer Older
1
import Menu from "../components/Menu/Menu.js";
2
import Footer from "../components/Footer.js";
3

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

export default HomePage