├── .flowconfig ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.js ├── Components │ ├── CardTemplate │ │ ├── CardTemplate.css │ │ └── CardTemplate.jsx │ ├── Home │ │ ├── Home.css │ │ └── Home.jsx │ ├── Movie │ │ ├── Movie.css │ │ └── Movie.jsx │ ├── Navbar │ │ └── Navbar.jsx │ ├── Routes │ │ └── Routes.jsx │ ├── SearchForm │ │ ├── SearchForm.css │ │ └── SearchForm.jsx │ ├── Showfilms │ │ ├── Showfilms.css │ │ └── Showfilms.jsx │ └── Table │ │ ├── Table.css │ │ └── Table.jsx ├── Services │ ├── dataService.js │ └── utilsService.js └── index.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Components/CardTemplate/CardTemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/CardTemplate/CardTemplate.css -------------------------------------------------------------------------------- /src/Components/CardTemplate/CardTemplate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/CardTemplate/CardTemplate.jsx -------------------------------------------------------------------------------- /src/Components/Home/Home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Components/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Home/Home.jsx -------------------------------------------------------------------------------- /src/Components/Movie/Movie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Movie/Movie.css -------------------------------------------------------------------------------- /src/Components/Movie/Movie.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Movie/Movie.jsx -------------------------------------------------------------------------------- /src/Components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/Components/Routes/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Routes/Routes.jsx -------------------------------------------------------------------------------- /src/Components/SearchForm/SearchForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/SearchForm/SearchForm.css -------------------------------------------------------------------------------- /src/Components/SearchForm/SearchForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/SearchForm/SearchForm.jsx -------------------------------------------------------------------------------- /src/Components/Showfilms/Showfilms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Showfilms/Showfilms.css -------------------------------------------------------------------------------- /src/Components/Showfilms/Showfilms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Showfilms/Showfilms.jsx -------------------------------------------------------------------------------- /src/Components/Table/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Table/Table.css -------------------------------------------------------------------------------- /src/Components/Table/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Components/Table/Table.jsx -------------------------------------------------------------------------------- /src/Services/dataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Services/dataService.js -------------------------------------------------------------------------------- /src/Services/utilsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/Services/utilsService.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalbertsr/react-movies-app/HEAD/yarn.lock --------------------------------------------------------------------------------