├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── Provider │ └── index.tsx ├── app │ ├── hooks.ts │ └── store.ts ├── common │ └── types.ts ├── component │ ├── Card │ │ ├── index.tsx │ │ └── style.css │ └── Header │ │ ├── index.tsx │ │ └── style.css ├── features │ └── favMovieSlice.ts ├── index.css ├── index.tsx ├── logo.svg ├── pages │ ├── Favorites │ │ ├── index.tsx │ │ └── style.css │ ├── Home │ │ └── index.tsx │ └── Movie │ │ ├── index.tsx │ │ └── style.css ├── react-app-env.d.ts ├── reportWebVitals.ts ├── services │ ├── FetchMovie.ts │ ├── PaginateMovies.ts │ └── api.ts └── setupTests.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/Provider/index.tsx -------------------------------------------------------------------------------- /src/app/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/app/hooks.ts -------------------------------------------------------------------------------- /src/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/app/store.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/component/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/component/Card/index.tsx -------------------------------------------------------------------------------- /src/component/Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/component/Card/style.css -------------------------------------------------------------------------------- /src/component/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/component/Header/index.tsx -------------------------------------------------------------------------------- /src/component/Header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/component/Header/style.css -------------------------------------------------------------------------------- /src/features/favMovieSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/features/favMovieSlice.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Favorites/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/pages/Favorites/index.tsx -------------------------------------------------------------------------------- /src/pages/Favorites/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/pages/Favorites/style.css -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/pages/Movie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/pages/Movie/index.tsx -------------------------------------------------------------------------------- /src/pages/Movie/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/pages/Movie/style.css -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/services/FetchMovie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/services/FetchMovie.ts -------------------------------------------------------------------------------- /src/services/PaginateMovies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/services/PaginateMovies.ts -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickjsprogram/box-office/HEAD/tsconfig.json --------------------------------------------------------------------------------