https://github.com/masterkale/react-hooks-playground
Getting familiar with React Hooks
https://github.com/masterkale/react-hooks-playground
Last synced: 5 months ago
JSON representation
Getting familiar with React Hooks
- Host: GitHub
- URL: https://github.com/masterkale/react-hooks-playground
- Owner: MasterKale
- Created: 2019-03-03T07:08:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T17:13:09.000Z (over 3 years ago)
- Last Synced: 2025-02-05T13:48:22.982Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://dazzling-villani-e6135b.netlify.com/
- Size: 633 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Hooks Playground
## Requirements
- Node v10.15.2
- Yarn
## Development
To install dependencies:
```sh
$> yarn install
```
To start the dev server:
```sh
$> yarn start
```
## Notes
- The **hooks-vs-hocs** folder contains functionally-equivalent code. One set is written using "traditional" Class Components and HOCs. The other is written using Function Components and Hooks.
- The **budget-tracker** folder contains Hooks-heavy code as it might appear when developing an actual product using the latest React.