Leonard Kioi Kinyanjui
Learn & Build

Learn & Build

Follow
homeAbout Mebadgesnewsletter
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

React Elements & JSX

Sep 8, 20234 min read

What you will learn by the end of this article: What a React Element is. How to create React Elements. What JSX is. Rules of JSX. Elements are the...

React Elements & JSX

🥞 Creating Pancake Stack Layout Pattern

Jun 17, 20233 min read

A pancake stack or sticky footer layout is a pattern where the footer "sticks" to the bottom of the viewport when content is short and when content...

🥞 Creating Pancake Stack Layout Pattern

Debouncing while using React Query

Jun 9, 20233 min read

React Query is the most popular React library for managing async queries. It allows you to fetch data declaratively and handles caching and...

Debouncing while using React Query

Reducing unnecessary re-renders with React.memo

Jul 16, 20223 min read

Let's begin by understanding what a render is. A render is when React calls the render function of a class component or calls a function component in...

Reducing unnecessary re-renders with React.memo

How to Prevent Nesting of Components in React

Apr 24, 20222 min read

When making an application/library in React it may be necessary to prevent the nesting of components. Let's use an example to help understand the...

How to Prevent Nesting of Components in React

React useState lazy initializers

Feb 14, 20222 min read

When using useState to manage state for a React component you normally do something like this: function Counter() { const [count, setCount] =...

React useState lazy initializers