Server side sorting and pagination using react-query and react-bootstrap-table-next (best practice)

In this blog, I will cover server side sorting and pagination using react-query and react-bootstrap-table-next. Generally, I prefer to use useQuery to get the data from the server, React Query manages query caching based on query keys. Query keys can be as simple as a string, or as complex as an array of many strings and nested objects. … Continue reading Server side sorting and pagination using react-query and react-bootstrap-table-next (best practice)

How To Achieve Data Immutability in Javascript & React

React is a famous library for building dynamic user interfaces. Data immutability is an idea that came from functional programming and applying it to design of your front end app can have many benefits. What is Data mutation? To understand the idea of data mutation, will need to step back to the foundations of programming and understand how … Continue reading How To Achieve Data Immutability in Javascript & React