-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
28 lines (23 loc) · 872 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 React from 'react';
import './App.css';
import Row from './Row';
import requests from './requests';
import Nav from "./Components/Nav";
function App() {
return (
<div className="App">
<h1>Hey Clever Programmer! Let's build Netflix Clone Front-end today </h1>
<Nav/>
<Banner/>
<Row title="Netflix Orignals" fetchURL={requests.fetchNetflixOrignals} isLargeRow />
<Row title="Trending Now" fetchURL={requests.fetchTrending}/>
<Row title="Top Rated" fetchURL={requests.fetchTopRated}/>
<Row title="Action 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;