Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
449 Bytes
import React from "react";
import "./style.scss";
import HeroBanner from "./heroBanner/HeroBanner";
import Trending from "./trending/Trending";
import Popular from "./popular/Popular";
import TopRated from "./topRated/TopRated";
const Home = () => {
return (
<div className="homePage">
<HeroBanner />
<Trending />
<Popular />
<TopRated />
</div>
);
};
export default Home;