HomePage.js 314 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1

2
import BoxOffice from "../components/BoxOffice";
Kim, Subin's avatar
Kim, Subin committed
3
import Collection from "../components/Collection";
4
5
6
7
import Footer from "../components/Footer";

const HomePage = () => {
    return (
Jiwon Yoon's avatar
Jiwon Yoon committed
8
        <>
9
            <BoxOffice />
Kim, Subin's avatar
Kim, Subin committed
10
            <Collection />
11
            <Footer />
Jiwon Yoon's avatar
Jiwon Yoon committed
12
        </>
13
14
15
16
    )
}

export default HomePage