-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
28 lines (26 loc) · 926 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import "./App.css";
import Row from "./Components/Row";
import Banner from "./Components/Banner";
import requests from "./requests";
import Nav from "./Components/Nav";
function App() {
return (
<div className="app">
<Nav />
<Banner />
<Row
title="NETFLIX ORIGINALS"
fetchUrl={requests.fetchNetflixOriginals}
isLargeRow
/>
<Row title="Trending Now" fetchUrl={requests.fetchTrending} />
<Row title="Top Rated" fetchUrl={requests.fetchTopRated} />
<Row title="Actions Movies" fetchUrl={requests.fetchActionMovies} />
<Row title="Comedy Movies" fetchUrl={requests.fetchComedyMovies} />
<Row title="Horror Movies" fetchUrl={requests.fetchHorrorMovies} />
<Row title="Romance Movies" fetchUrl={requests.fetchRomanceMovies} />
<Row title="Documentaries" fetchUrl={requests.fetchDocumentaries} />
</div>
);
}
export default App;