Micro Frontend Introduction

Micro Frontends

Micro frontends is an architectural approach to frontend development with the idea of thinking of a project as a collection of features independently owned by different teams. Each team has a certain task in which they specialize. A team is cross-functional and develops its features end-to-end, from database to user interface.
useMemo and useCallback in react

Hooks: useMemo and useCallback In React

In this article, we will be discussing the two in-built react hooks: useMemo and useCallback. Whenever there is an update in a component, react re-renders. This may cause unchanged parts of the components to re-render unnecessarily. So, to avoid these types of unwanted re-render of the whole component tree, we use useMemo and useCallback. We implement the memoization method. It is an optimization method that stores the results of expensive functions and returns the cached results when a similar scenario takes place.
add pagination on react app

How To Add Pagination On React App

In this tutorial, we will be discussing on how to add pagination on a react app. Pagination means to separate the contents into several pages. While developing a React app, we often need to render large amount of items from the api. so, to render those items within a certain limit in each page we use pagination.