Redux Toolkit Better way to write Redux code in ReactJS
Last Updated :
17 Jan, 2022
Redux Toolkit is used for writing redux code but in a more concise way. Redux Toolkit (RTK) solves three bigger problems that most of the developer's face who used redux in a react application.
- Too much code to configure the store.
- Writing too much boilerplate code to dispatch actions and store the data in the reducer.
- Extra packages like Redux-Thunk and Redux-Saga for doing asynchronous actions.
Creating a React Application and Installing Module:
- Step 1: Create a react application using the below command with typescript support:
// NPM
npx create-react-app my-app --template typescript
// Yarn
yarn create react-app my-app --template typescript
- Step 2: Once the project is created move into the project folder using the below command:
cd my-app
- Step 3: Now install Redux Toolkit via npm or yarn in our created project using the below command:
// NPM
npm install @reduxjs/toolkit react-redux
// Yarn
yarn add @reduxjs/toolkit react-redux
Project Structure: It will look like this.

Store Creation: Create a file called store.js by using the configureStore method from the redux toolkit package, pass in the list reducer's required for the application to initialize a store.
store.js
import { configureStore } from '@reduxjs/toolkit'
export const store = configureStore({
reducer: {},
})
Providing Store to React application: Once the store is created, we can provide the store to the react app using the Provider method from the react-redux package.
App.js
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import App from './App';
import { store } from './store.js';
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('root'),
);
Creating A Redux Slice: Create a slice.js file. In Redux Toolkit, we create a reducer using createSlice API from the redux toolkit package. It simplifies the creation of actions and the complex switch cases of a reducer into a few lines of code by internally using them.
slice.js
import { createSlice } from '@reduxjs/toolkit';
const initialState = {
name: [],
food: [],
};
const customerSlice = createSlice({
// An unique name of a slice
name: 'customer',
// Initial state value of the reducer
initialState,
// Reducer methods
reducers: {
addCustomer: (state, { payload }) => {
state.name.push(payload);
},
orderFood: (state, { payload }) => {
state.food.push(payload);
},
},
});
// Action creators for each reducer method
export const { addCustomer, orderFood }
= customerSlice.actions;
export default customerSlice.reducer;
Even though the above code, we use to push it doesn't mutate the state value, since Redux toolkit uses immer library internally to update the state immutably.
Now, we import the reducer into the store.js file we created earlier. By defining a field inside the reducer parameter, we tell the store to use this slice reducer function to handle all updates to that state.
store.js
import { configureStore } from '@reduxjs/toolkit';
import reducer from './slice.js';
export default configureStore({
reducer: {
customers: reducer,
},
});
Using Redux state and actions in Components: We can use the react-redux hooks (useSelectore and useDispatch) to read the redux store values and dispatch actions to the reducers.
component.js
import React, { useState } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { orderFood } from './slice.js';
function CustomerCard({ name }) {
const [orders, setOrders] = useState('');
// Using useSelector hook we obtain the redux store value
const food = useSelector((state) => state.customers.food);
const dispatch = useDispatch();
// Using the useDispatch hook to send payload back to redux
const addOrder = () => dispatch(orderFood(orders));
return (
<div>
<div className="customer-food-card-container">
<p>{name}</p>
<div className="customer-foods-container">
{food.map((foo) => (
<div className="customer-food">{foo}</div>
))}
<div className="customer-food-input-container">
<input value={orders} onChange={(event) =>
setOrders(event.target.value)} />
<button onClick={addOrder}>Add</button>
</div>
</div>
</div>
</div>
);
}
export default CustomerCard;
Step to Run Application: Run the application using the following command from the root directory of the project.
// NPM
npm start
// yarn
yarn start
This is how the redux toolkit simplifies the usage of redux by avoiding all the boilerplate code.
Reference:
Similar Reads
JavaScript Tutorial JavaScript is a programming language used to create dynamic content for websites. It is a lightweight, cross-platform, and single-threaded programming language. It's an interpreted language that executes code line by line, providing more flexibility.JavaScript on Client Side: On the client side, Jav
11 min read
React Interview Questions and Answers React is an efficient, flexible, and open-source JavaScript library that allows developers to create simple, fast, and scalable web applications. Jordan Walke, a software engineer who was working for Facebook, created React. Developers with a JavaScript background can easily develop web applications
15+ min read
React Tutorial React is a powerful JavaScript library for building fast, scalable front-end applications. Created by Facebook, it's known for its component-based structure, single-page applications (SPAs), and virtual DOM,enabling efficient UI updates and a seamless user experience.Note: The latest stable version
7 min read
JavaScript Interview Questions and Answers JavaScript is the most used programming language for developing websites, web servers, mobile applications, and many other platforms. In Both Front-end and Back-end Interviews, JavaScript was asked, and its difficulty depends upon the on your profile and company. Here, we compiled 70+ JS Interview q
15+ min read
Domain Name System (DNS) DNS is a hierarchical and distributed naming system that translates domain names into IP addresses. When you type a domain name like www.geeksforgeeks.org into your browser, DNS ensures that the request reaches the correct server by resolving the domain to its corresponding IP address.Without DNS, w
8 min read
NodeJS Interview Questions and Answers NodeJS is one of the most popular runtime environments, known for its efficiency, scalability, and ability to handle asynchronous operations. It is built on Chromeâs V8 JavaScript engine for executing JavaScript code outside of a browser. It is extensively used by top companies such as LinkedIn, Net
15+ min read
HTML Interview Questions and Answers HTML (HyperText Markup Language) is the foundational language for creating web pages and web applications. Whether you're a fresher or an experienced professional, preparing for an HTML interview requires a solid understanding of both basic and advanced concepts. Below is a curated list of 50+ HTML
14 min read
CSS Tutorial CSS stands for Cascading Style Sheets. It is a stylesheet language used to style and enhance website presentation. CSS is one of the three main components of a webpage, along with HTML and JavaScript.HTML adds Structure to a web page.JavaScript adds logic to it and CSS makes it visually appealing or
7 min read
Node.js Tutorial Node.js is a powerful, open-source, and cross-platform JavaScript runtime environment built on Chrome's V8 engine. It allows you to run JavaScript code outside the browser, making it ideal for building scalable server-side and networking applications.JavaScript was mainly used for frontend developme
4 min read
HTML Introduction HTML stands for Hyper Text Markup Language, which is the core language used to structure content on the web. It organizes text, images, links, and media using tags and elements that browsers can interpret. As of 2025, over 95% of websites rely on HTML alongside CSS and JavaScript, making it a fundam
6 min read