# Getting Started with Create React App A simple PokemonCard catalogue frontend app, build with React, Redux-Toolkit, Material-UI. It uses backend powered by [PokeAPI](https://pokeapi.co/). It's a learning project following [pokedex](https://github.com/s1varam/pokedex). In this project, I practised following skills: * Use React to create View for FE * Use redux, react-redux, redux-toolkit (RTK) for state management * Use storybook to design component * Use [RTK Query](https://redux-toolkit.js.org/rtk-query/overview) for fetching Feature of the pokedex application: * Display list of pokemon cards * Fetching pokemon cards by region ![fetching by region](README/1_fetching_by_region.gif) * Filter pokemon cards by type ![filter by type](README/2_filter_by_type.gif) * Sort pokemon cards by name or ID ![sort by name](README/3_sort_by_id_or_name.gif) * Filter pokemon cards by search naming ![filter by search](README/4_filter_by_search.gif) * Show pokemon card detail ![show detail](README/5_click_info_icon.gif) Deployed on [Netlify](https://main--glittery-belekoy-f5e832.netlify.app/) ## Available Scripts In the project directory, you can run: * `nvm use`: use node version according to `.nvmrc` * `yarn start`: run the development server * `yarn storybook`: start storybook server to check component rendering * `yarn build`: build the app for production ## TODO * [ ] Fix css of Filter component * [ ] Fix Poke logo size via css * [ ] Add day/night toggle in header * [ ] Add github icon in header * [ ] Use material.ui to display pokemon cards * [ ] Fix round corner of InfoDialog component * [ ] Add error handling for data fetching across app * [x] Deploy through netlify