https://github.com/utkarsh1504/ir-v3
https://github.com/utkarsh1504/ir-v3
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/utkarsh1504/ir-v3
- Owner: Utkarsh1504
- Created: 2021-08-07T16:58:53.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-08T05:06:42.000Z (almost 5 years ago)
- Last Synced: 2025-02-17T12:18:05.223Z (over 1 year ago)
- Language: JavaScript
- Size: 519 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Advance React Hooks
This repository contained some of the basic to advanced concepts based React Hooks Project.
### For quick setup:
- clone this repository
- run `npm install`
- run `npm start`
- open `http://localhost:3000`
### Deploy on Github Pages:
- add `"homepage": "https://username.github.io/RepoName"` in your package.json at the top
- now install `npm install --save gh-pages`
- now simply add the following in your package.json under the scripts section
- ```yml
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
```
- Lastly run `npm run deploy`.
That's it!