https://github.com/arsy786/redux-toolkit-thunk-app
The aim of this project is to demonstrate how to use Redux Toolkit and Thunk middleware in a React application.
https://github.com/arsy786/redux-toolkit-thunk-app
2023 reactjs redux-thunk redux-toolkit tutorial
Last synced: 2 months ago
JSON representation
The aim of this project is to demonstrate how to use Redux Toolkit and Thunk middleware in a React application.
- Host: GitHub
- URL: https://github.com/arsy786/redux-toolkit-thunk-app
- Owner: arsy786
- Created: 2023-04-16T14:06:38.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-22T20:00:26.000Z (about 2 years ago)
- Last Synced: 2025-07-30T21:22:42.315Z (11 months ago)
- Topics: 2023, reactjs, redux-thunk, redux-toolkit, tutorial
- Language: JavaScript
- Homepage:
- Size: 173 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redux Toolkit Thunk App
This project is a sample app that was created following the tutorial: [Redux Toolkit with Redux Thunk | Build a Photo Gallery App (YouTube/EdRoh)](https://www.youtube.com/watch?v=lH-yFJZF0ts). The aim of this project is to demonstrate how to use Redux Toolkit and Thunk middleware in a React application.
## Getting Started
### Prerequisites
- Node.js
### Setup
1. Open your terminal or command prompt.
2. Clone the repository using Git:
```bash
git clone https://github.com/arsy786/redux-toolkit-thunk-app.git
```
3. Navigate to the cloned repository's root directory:
```bash
cd redux-toolkit-thunk-app
```
4. Install NPM packages:
```bash
npm install
```
5. Start the development server:
```bash
npm start
```
This runs the app in the development mode. Open http://localhost:3000 to view it in your browser. The page will reload when you make changes.