HomePage.js 474 Bytes
Newer Older
1
import Menu from "../components/Menu/Menu.js";
Kim, Subin's avatar
Kim, Subin committed
2
import CalendarBtn from "../components/Buttons/CalendarBtn.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
Kim, Subin committed
9
10
11
            <div className="position-absolute" style={{ top: "9px", right: "8px" }}>
                <CalendarBtn date="2021-10-28" />
            </div>
12
            <Footer pathname="schedule/edit" />
13
        </>
Kim, Subin's avatar
Kim, Subin committed
14
15
16
17
    )
}

export default HomePage