├── .gitignore ├── README.md ├── _redirects ├── app ├── components │ ├── Battle.js │ ├── Card.js │ ├── Loading.js │ ├── Nav.js │ ├── Popular.js │ ├── Results.js │ └── Tooltip.js ├── contexts │ └── theme.js ├── hooks │ └── useHover.js ├── index.css ├── index.html ├── index.js └── utils │ └── api.js ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/_redirects -------------------------------------------------------------------------------- /app/components/Battle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Battle.js -------------------------------------------------------------------------------- /app/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Card.js -------------------------------------------------------------------------------- /app/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Loading.js -------------------------------------------------------------------------------- /app/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Nav.js -------------------------------------------------------------------------------- /app/components/Popular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Popular.js -------------------------------------------------------------------------------- /app/components/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Results.js -------------------------------------------------------------------------------- /app/components/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/components/Tooltip.js -------------------------------------------------------------------------------- /app/contexts/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/contexts/theme.js -------------------------------------------------------------------------------- /app/hooks/useHover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/hooks/useHover.js -------------------------------------------------------------------------------- /app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/index.css -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/index.js -------------------------------------------------------------------------------- /app/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/app/utils/api.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uidotdev/react-with-typescript-course/HEAD/webpack.config.js --------------------------------------------------------------------------------