/CounterAppRedux

I created this counter app where main focus was to implement the redux concepts that I learned and also I have used Redux toolkit for this

Primary LanguageJavaScript

Redux Toolkit React Project

A small React project implementing Redux concepts using Redux Toolkit.

Table of Contents

Introduction

This project serves as an example of integrating Redux and Redux Toolkit in a React application. It provides a basic implementation to showcase state management using these technologies.

Technologies Used

  • React
  • Redux
  • Redux Toolkit

Project Structure

The project follows a standard React project structure. The Redux-related files are organized as follows:

project-root
| public
│ src
│ ├── components
│ │ └── ...
│ ├── store
│ │ ├── cart-slice.js
│ │ ├── ui-slice.js
│ │ ├── index.js
│ │ └── ...
│ └── ...

Getting Started

Prerequisites

Before running the project, make sure you have the following installed:

  • Node.js
  • npm (Node Package Manager)

Installation

Run the following command to install project dependencies:

npm install
npm start