Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vsevagen/a-taste-of-react
https://github.com/vsevagen/a-taste-of-react
react react-hooks
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vsevagen/a-taste-of-react
- Owner: VSevagen
- Created: 2020-07-13T16:15:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T19:30:41.000Z (over 1 year ago)
- Last Synced: 2024-10-11T13:32:19.907Z (about 1 month ago)
- Topics: react, react-hooks
- Language: JavaScript
- Homepage:
- Size: 7.95 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Taste of React
This repo will contains mini projects that I have attempted to get my hands better around the React framework for front-end making.
I will be clearly documenting my learning throughout this process through each project folder.
## Pokedex
Pokedex is an adaptation from the Pokemon series where the details of every pokemon can be found through a device, called the Pokedex. Pokemon details are fetched from an array of Pokemon objects. The pcitures are fetched through the publicly available pokemon API.### Things Learned :books:
* Introduced to JSX
* Props in React
* Used integrated toolchain, create-react-app## Dice Game
This is a die rolling simulator. It will pick numbers at random and render the respective icon based on tha latter. The icons are fetched fron Font Awesome and styled using styled components.### Things Learned :books:
* Usage of state
* Difference between state and props## Hangman
Hangman is a game where you have to figure out the chosen word under 6 moves, that is before the full stick figure has been drawn. If you do, you win, else you lose.### Things Learned :books:
* React Events
* React Keys