├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── components │ └── PokemonSearch.tsx ├── index.css ├── index.tsx ├── interfaces │ └── User.interface.ts ├── react-app-env.d.ts └── serviceWorker.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/PokemonSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/components/PokemonSearch.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces/User.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/interfaces/User.interface.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidjou/classsed-react-typescript-tutorial/HEAD/tsconfig.json --------------------------------------------------------------------------------