├── .DS_Store ├── 1. Files to be copied to project folder ├── .DS_Store ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── API.js │ ├── App.js │ ├── config.js │ ├── helpers.js │ ├── images │ ├── no_image.jpg │ ├── react-movie-logo.svg │ ├── search-icon.svg │ └── tmdb_logo.svg │ └── index.js ├── 2. Project to start from - WITHOUT Styles ├── .DS_Store └── react-rmdb-START-HERE │ ├── .DS_Store │ ├── .env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── API.js │ ├── App.js │ ├── config.js │ ├── helpers.js │ ├── images │ ├── no_image.jpg │ ├── react-movie-logo.svg │ ├── search-icon.svg │ └── tmdb_logo.svg │ └── index.js ├── 3. Project to start from - WITH Styles ├── .DS_Store └── react-rmdb-START-HERE │ ├── .DS_Store │ ├── .env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── API.js │ ├── App.js │ ├── GlobalStyle.js │ ├── components │ ├── Actor │ │ └── Actor.styles.js │ ├── BreadCrumb │ │ └── BreadCrumb.styles.js │ ├── Button │ │ └── Button.styles.js │ ├── Grid │ │ └── Grid.styles.js │ ├── Header │ │ └── Header.styles.js │ ├── HeroImage │ │ └── HeroImage.styles.js │ ├── MovieInfo │ │ └── MovieInfo.styles.js │ ├── MovieInfoBar │ │ └── MovieInfoBar.styles.js │ ├── SearchBar │ │ └── SearchBar.styles.js │ ├── Spinner │ │ └── Spinner.styles.js │ └── Thumb │ │ └── Thumb.styles.js │ ├── config.js │ ├── helpers.js │ ├── images │ ├── no_image.jpg │ ├── react-movie-logo.svg │ ├── search-icon.svg │ └── tmdb_logo.svg │ └── index.js ├── 4. Finished App ├── .DS_Store ├── react-rmdb-finished-classes │ ├── .DS_Store │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── react-rmdb-finished-hooks │ ├── .env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── react-rmdb-finished-rating │ ├── .env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Login.js │ │ ├── Login.styles.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── Rate │ │ │ └── index.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── context.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js └── react-rmdb-finished-typescript │ ├── .env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── API.ts │ ├── App.tsx │ ├── GlobalStyle.ts │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.ts │ │ │ └── index.tsx │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.ts │ │ │ └── index.tsx │ │ ├── Button │ │ │ ├── Button.styles.ts │ │ │ └── index.tsx │ │ ├── Grid │ │ │ ├── Grid.styles.ts │ │ │ └── index.tsx │ │ ├── Header │ │ │ ├── Header.styles.ts │ │ │ └── index.tsx │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.ts │ │ │ └── index.tsx │ │ ├── Home.tsx │ │ ├── Movie.tsx │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.ts │ │ │ └── index.tsx │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.ts │ │ │ └── index.tsx │ │ ├── NotFound.tsx │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.ts │ │ │ └── index.tsx │ │ ├── Spinner │ │ │ ├── Spinner.styles.ts │ │ │ └── index.tsx │ │ └── Thumb │ │ │ ├── Thumb.styles.ts │ │ │ └── index.tsx │ ├── config.ts │ ├── helpers.ts │ ├── hooks │ │ ├── useHomeFetch.ts │ │ └── useMovieFetch.ts │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ ├── index.tsx │ └── react-app-env.d.ts │ └── tsconfig.json ├── 5. Stepped Solutions ├── .DS_Store ├── Before Video 15 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 16 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 17 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ └── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 18 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ └── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 20 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 21 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 22 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 23 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 24 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 25 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 26 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ └── Home.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 27 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 28 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 29 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 30 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 31 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 32 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 33 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 34 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 36 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 37 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 38 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ └── useHomeFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 39 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 40 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 41 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 42 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 43 │ ├── .DS_Store │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 44 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 45 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 46 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 48 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 49 │ └── react-rmdb │ │ ├── .env │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 51 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 55 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 56 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 57 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 60 │ └── react-rmdb-ts │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── .env │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ │ ├── Actor │ │ │ │ ├── Actor.styles.js │ │ │ │ └── index.js │ │ │ ├── BreadCrumb │ │ │ │ ├── BreadCrumb.styles.js │ │ │ │ └── index.js │ │ │ ├── Button │ │ │ │ ├── Button.styles.js │ │ │ │ └── index.js │ │ │ ├── Grid │ │ │ │ ├── Grid.styles.js │ │ │ │ └── index.js │ │ │ ├── Header │ │ │ │ ├── Header.styles.js │ │ │ │ └── index.js │ │ │ ├── HeroImage │ │ │ │ ├── HeroImage.styles.js │ │ │ │ └── index.js │ │ │ ├── Home.js │ │ │ ├── Movie.js │ │ │ ├── MovieInfo │ │ │ │ ├── MovieInfo.styles.js │ │ │ │ └── index.js │ │ │ ├── MovieInfoBar │ │ │ │ ├── MovieInfoBar.styles.js │ │ │ │ └── index.js │ │ │ ├── NotFound.js │ │ │ ├── SearchBar │ │ │ │ ├── SearchBar.styles.js │ │ │ │ └── index.js │ │ │ ├── Spinner │ │ │ │ ├── Spinner.styles.js │ │ │ │ └── index.js │ │ │ └── Thumb │ │ │ │ ├── Thumb.styles.js │ │ │ │ └── index.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── hooks │ │ │ ├── useHomeFetch.js │ │ │ └── useMovieFetch.js │ │ ├── images │ │ │ ├── no_image.jpg │ │ │ ├── react-movie-logo.svg │ │ │ ├── search-icon.svg │ │ │ └── tmdb_logo.svg │ │ ├── index.tsx │ │ └── react-app-env.d.ts │ │ └── tsconfig.json ├── Before Video 61 │ └── react-rmdb-ts │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── API.ts │ │ ├── App.tsx │ │ ├── GlobalStyle.ts │ │ ├── components │ │ │ ├── Actor │ │ │ │ ├── Actor.styles.js │ │ │ │ └── index.js │ │ │ ├── BreadCrumb │ │ │ │ ├── BreadCrumb.styles.js │ │ │ │ └── index.js │ │ │ ├── Button │ │ │ │ ├── Button.styles.js │ │ │ │ └── index.js │ │ │ ├── Grid │ │ │ │ ├── Grid.styles.js │ │ │ │ └── index.js │ │ │ ├── Header │ │ │ │ ├── Header.styles.js │ │ │ │ └── index.js │ │ │ ├── HeroImage │ │ │ │ ├── HeroImage.styles.js │ │ │ │ └── index.js │ │ │ ├── Home.js │ │ │ ├── Movie.js │ │ │ ├── MovieInfo │ │ │ │ ├── MovieInfo.styles.js │ │ │ │ └── index.js │ │ │ ├── MovieInfoBar │ │ │ │ ├── MovieInfoBar.styles.js │ │ │ │ └── index.js │ │ │ ├── NotFound.js │ │ │ ├── SearchBar │ │ │ │ ├── SearchBar.styles.js │ │ │ │ └── index.js │ │ │ ├── Spinner │ │ │ │ ├── Spinner.styles.js │ │ │ │ └── index.js │ │ │ └── Thumb │ │ │ │ ├── Thumb.styles.js │ │ │ │ └── index.js │ │ ├── config.ts │ │ ├── helpers.ts │ │ ├── hooks │ │ │ ├── useHomeFetch.js │ │ │ └── useMovieFetch.js │ │ ├── images │ │ │ ├── no_image.jpg │ │ │ ├── react-movie-logo.svg │ │ │ ├── search-icon.svg │ │ │ └── tmdb_logo.svg │ │ ├── index.tsx │ │ └── react-app-env.d.ts │ │ └── tsconfig.json ├── Before Video 62 │ └── react-rmdb-ts │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── API.ts │ │ ├── App.tsx │ │ ├── GlobalStyle.ts │ │ ├── components │ │ │ ├── Actor │ │ │ │ ├── Actor.styles.js │ │ │ │ └── index.js │ │ │ ├── BreadCrumb │ │ │ │ ├── BreadCrumb.styles.js │ │ │ │ └── index.js │ │ │ ├── Button │ │ │ │ ├── Button.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── Grid │ │ │ │ ├── Grid.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── Header │ │ │ │ ├── Header.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── HeroImage │ │ │ │ ├── HeroImage.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── Home.tsx │ │ │ ├── Movie.js │ │ │ ├── MovieInfo │ │ │ │ ├── MovieInfo.styles.js │ │ │ │ └── index.js │ │ │ ├── MovieInfoBar │ │ │ │ ├── MovieInfoBar.styles.js │ │ │ │ └── index.js │ │ │ ├── NotFound.js │ │ │ ├── SearchBar │ │ │ │ ├── SearchBar.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── Spinner │ │ │ │ ├── Spinner.styles.ts │ │ │ │ └── index.tsx │ │ │ └── Thumb │ │ │ │ ├── Thumb.styles.ts │ │ │ │ └── index.tsx │ │ ├── config.ts │ │ ├── helpers.ts │ │ ├── hooks │ │ │ ├── useHomeFetch.ts │ │ │ └── useMovieFetch.js │ │ ├── images │ │ │ ├── no_image.jpg │ │ │ ├── react-movie-logo.svg │ │ │ ├── search-icon.svg │ │ │ └── tmdb_logo.svg │ │ ├── index.tsx │ │ └── react-app-env.d.ts │ │ └── tsconfig.json ├── Before Video 65 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── context.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 66 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Login.js │ │ ├── Login.styles.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── context.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 67 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Login.js │ │ ├── Login.styles.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── context.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js ├── Before Video 68 │ └── react-rmdb │ │ ├── .env │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── _redirects │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── API.js │ │ ├── App.js │ │ ├── GlobalStyle.js │ │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.js │ │ │ └── index.js │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.styles.js │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.styles.js │ │ │ └── index.js │ │ ├── Grid │ │ │ ├── Grid.styles.js │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.styles.js │ │ │ └── index.js │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.js │ │ │ └── index.js │ │ ├── Home.js │ │ ├── Login.js │ │ ├── Login.styles.js │ │ ├── Movie.js │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.js │ │ │ └── index.js │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.js │ │ │ └── index.js │ │ ├── NotFound.js │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.js │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── Spinner.styles.js │ │ │ └── index.js │ │ └── Thumb │ │ │ ├── Thumb.styles.js │ │ │ └── index.js │ │ ├── config.js │ │ ├── context.js │ │ ├── helpers.js │ │ ├── hooks │ │ ├── useHomeFetch.js │ │ └── useMovieFetch.js │ │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ │ └── index.js └── Before Video 69 │ └── react-rmdb │ ├── .env │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── _redirects │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── API.js │ ├── App.js │ ├── GlobalStyle.js │ ├── components │ ├── Actor │ │ ├── Actor.styles.js │ │ └── index.js │ ├── BreadCrumb │ │ ├── BreadCrumb.styles.js │ │ └── index.js │ ├── Button │ │ ├── Button.styles.js │ │ └── index.js │ ├── Grid │ │ ├── Grid.styles.js │ │ └── index.js │ ├── Header │ │ ├── Header.styles.js │ │ └── index.js │ ├── HeroImage │ │ ├── HeroImage.styles.js │ │ └── index.js │ ├── Home.js │ ├── Login.js │ ├── Login.styles.js │ ├── Movie.js │ ├── MovieInfo │ │ ├── MovieInfo.styles.js │ │ └── index.js │ ├── MovieInfoBar │ │ ├── MovieInfoBar.styles.js │ │ └── index.js │ ├── NotFound.js │ ├── Rate │ │ └── index.js │ ├── SearchBar │ │ ├── SearchBar.styles.js │ │ └── index.js │ ├── Spinner │ │ ├── Spinner.styles.js │ │ └── index.js │ └── Thumb │ │ ├── Thumb.styles.js │ │ └── index.js │ ├── config.js │ ├── context.js │ ├── helpers.js │ ├── hooks │ ├── useHomeFetch.js │ └── useMovieFetch.js │ ├── images │ ├── no_image.jpg │ ├── react-movie-logo.svg │ ├── search-icon.svg │ └── tmdb_logo.svg │ └── index.js └── 6. Crash Course in Props and State ├── .DS_Store └── crash-course ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── Lamp.js ├── LightSwitch.js └── index.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/.DS_Store -------------------------------------------------------------------------------- /1. Files to be copied to project folder/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/.DS_Store -------------------------------------------------------------------------------- /1. Files to be copied to project folder/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/public/favicon.ico -------------------------------------------------------------------------------- /1. Files to be copied to project folder/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/public/index.html -------------------------------------------------------------------------------- /1. Files to be copied to project folder/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/public/logo192.png -------------------------------------------------------------------------------- /1. Files to be copied to project folder/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/public/logo512.png -------------------------------------------------------------------------------- /1. Files to be copied to project folder/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/public/manifest.json -------------------------------------------------------------------------------- /1. Files to be copied to project folder/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/public/robots.txt -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/API.js -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/App.js -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/config.js -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/helpers.js -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/images/no_image.jpg -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/images/search-icon.svg -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/images/tmdb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/images/tmdb_logo.svg -------------------------------------------------------------------------------- /1. Files to be copied to project folder/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/1. Files to be copied to project folder/src/index.js -------------------------------------------------------------------------------- /2. Project to start from - WITHOUT Styles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/2. Project to start from - WITHOUT Styles/.DS_Store -------------------------------------------------------------------------------- /2. Project to start from - WITHOUT Styles/react-rmdb-START-HERE/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /3. Project to start from - WITH Styles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/3. Project to start from - WITH Styles/.DS_Store -------------------------------------------------------------------------------- /3. Project to start from - WITH Styles/react-rmdb-START-HERE/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /4. Finished App/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/.DS_Store -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/.DS_Store -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/README.md -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/package-lock.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/package.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/public/favicon.ico -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/public/index.html -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/public/logo192.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/public/logo512.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/public/manifest.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/public/robots.txt -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/API.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/App.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/GlobalStyle.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/components/Home.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/components/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/components/Movie.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/config.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/helpers.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/images/no_image.jpg -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-classes/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-classes/src/index.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/README.md -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/package-lock.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/package.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/public/favicon.ico -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/public/index.html -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/public/logo192.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/public/logo512.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/public/manifest.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/public/robots.txt -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/API.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/App.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/GlobalStyle.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/components/Home.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/components/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/components/Movie.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/config.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/helpers.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/hooks/useHomeFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/hooks/useHomeFetch.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/images/no_image.jpg -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/images/tmdb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/images/tmdb_logo.svg -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-hooks/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-hooks/src/index.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/README.md -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/package-lock.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/package.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/public/favicon.ico -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/public/index.html -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/public/logo192.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/public/logo512.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/public/manifest.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/public/robots.txt -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/API.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/App.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/GlobalStyle.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/components/Home.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/components/Login.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/components/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/components/Movie.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/config.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/context.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/helpers.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/images/no_image.jpg -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/images/tmdb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/images/tmdb_logo.svg -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-rating/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-rating/src/index.js -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/README.md -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/package-lock.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/package.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/public/favicon.ico -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/public/index.html -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/public/logo192.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/public/logo512.png -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/public/manifest.json -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/public/robots.txt -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/src/API.ts -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/src/App.tsx -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/GlobalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/src/GlobalStyle.ts -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/src/config.ts -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/src/helpers.ts -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/src/index.tsx -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /4. Finished App/react-rmdb-finished-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/4. Finished App/react-rmdb-finished-typescript/tsconfig.json -------------------------------------------------------------------------------- /5. Stepped Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/.DS_Store -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 15/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 15/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 16/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 16/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 17/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 17/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 18/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 18/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 20/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 20/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 21/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 21/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 22/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 22/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 23/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 23/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 24/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 24/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 25/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 25/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 26/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 26/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 27/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 27/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 28/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 28/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 29/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 29/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 30/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 30/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 31/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 31/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 32/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 32/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 33/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 33/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 34/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 34/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 36/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 36/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 37/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 37/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 38/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 38/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 39/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 39/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 40/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 40/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 41/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 41/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/public/logo512.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/public/robots.txt -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/src/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/src/GlobalStyle.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 42/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 42/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/.DS_Store -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/package-lock.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/public/favicon.ico -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/public/index.html -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/public/logo192.png -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 43/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 43/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 44/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 44/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 45/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 45/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 46/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 46/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 48/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 48/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/.gitignore -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 49/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 49/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 51/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 51/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 55/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 55/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 56/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 56/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 57/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 57/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/index.tsx -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 60/react-rmdb-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 60/react-rmdb-ts/tsconfig.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/API.ts -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/App.tsx -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/config.ts -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/index.tsx -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 61/react-rmdb-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 61/react-rmdb-ts/tsconfig.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/API.ts -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/App.tsx -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/config.ts -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/index.tsx -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 62/react-rmdb-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 62/react-rmdb-ts/tsconfig.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/src/context.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 65/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 65/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/src/context.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 66/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 66/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/src/context.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 67/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 67/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/src/context.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 68/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 68/react-rmdb/src/index.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_KEY= -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/README.md -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/package.json -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/src/API.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/src/App.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/src/config.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/src/context.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/src/helpers.js -------------------------------------------------------------------------------- /5. Stepped Solutions/Before Video 69/react-rmdb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/5. Stepped Solutions/Before Video 69/react-rmdb/src/index.js -------------------------------------------------------------------------------- /6. Crash Course in Props and State/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/.DS_Store -------------------------------------------------------------------------------- /6. Crash Course in Props and State/crash-course/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/crash-course/.gitignore -------------------------------------------------------------------------------- /6. Crash Course in Props and State/crash-course/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/crash-course/README.md -------------------------------------------------------------------------------- /6. Crash Course in Props and State/crash-course/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/crash-course/package.json -------------------------------------------------------------------------------- /6. Crash Course in Props and State/crash-course/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/crash-course/src/App.js -------------------------------------------------------------------------------- /6. Crash Course in Props and State/crash-course/src/Lamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/crash-course/src/Lamp.js -------------------------------------------------------------------------------- /6. Crash Course in Props and State/crash-course/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibenfalk/react-rmdb-v3-starter-files/HEAD/6. Crash Course in Props and State/crash-course/src/index.js --------------------------------------------------------------------------------