Collection.js 478 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
const Collection = () => {
    return (
        <>
            <h2 className="fw-bold text-white text-center my-5">Movie Collection</h2>
            <div className="d-flex container justify-content-between" style={{ marginBottom: "8em" }}>
                <div className="col-md-8 col-12 bg-white" style={{ height: "20em" }}></div>
                <img className="col-md-3 bg-white" style={{ height: "20em" }} />
            </div>
        </>
    )
}

export default Collection