Reputation: 1
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