https://github.com/jknezevic1712/redux-toolkit-tutorial
https://github.com/jknezevic1712/redux-toolkit-tutorial
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jknezevic1712/redux-toolkit-tutorial
- Owner: jknezevic1712
- License: mit
- Created: 2022-02-22T11:37:48.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-22T14:31:12.000Z (about 3 years ago)
- Last Synced: 2025-02-04T15:51:48.437Z (3 months ago)
- Language: TypeScript
- Size: 701 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This is the starting place in conjunction with my **Redux Toolkit** comparison video. Please start here. NOTE: no dependencies related to Redux are installed here! Please follow along in the video and add them with me!
## How did I create this project?
1. I created a Typescript template create-react-app project by running
`npx create-react-app rtk --template typescript`
2. Personal Preference and purely optional, but I installed `prettier` and created the `.eslintrc.json` file to link prettier and ESLint together.
3. I installed `uuid` and `@types/uuid` to be able to generate unique IDs.
4. I removed most of the starter code that CRA gives you and created the template that you see above.## How do I start the app??
Go to the root directly, open up the terminal, and type `npm start`
# NOTE
You can when creating project type `npx create-react-app projectName --template redux` which will automatically install redux-toolkit and react-redux with an example to get you started!