Zenith Dabarera
Zenith Dabarera

Reputation: 1

How to setup redux toolkit for remote state management for lsiting products to a mui table with pagination

I want to modify a mui table with pagination and map data with redux tool kit

const { page, limit, cus_id } = req.query;
const offset = (page - 1) * limit;

Above two lines are from the backend code specifying query parameters page,limit and cus_id

Upvotes: -3

Views: 29

Answers (0)

Related Questions