Code Bushi

Code Bushi

Follow
Follow
homeFree Nextjs Templatesnewsletter
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

Filtering with React Server Components and URL Search Params

Sep 14, 20232 min read

Traditionally, when you wanted to filter your data using React, you would first store the original data in local state, with the useState hook. There...

Filtering with React Server Components and URL Search Params

Next.js Server Actions Inside Client Components

Sep 2, 20232 min read

Today we'll do a quick exploration of Next.js Server Actions and how you can mix them into React Client Side Components. We start with a sample app...

Next.js Server Actions Inside Client Components

Next.js App Router Dynamic Sitemap & SEO Metadata

Aug 20, 20232 min read

Let's add a dynamic sitemap.xml file to our Next.js blog, built using the new Next.js App Router. We'll also add some helpful metadata tags including...

Next.js App Router Dynamic Sitemap & SEO Metadata

Intro to React's useReducer Hook

Nov 16, 20193 min read

We dive into React's useReducer hook and see how we can use it to manage complex state. We first compare useState and useReducer and slowly add on to...

Intro to React's useReducer Hook

React.memo, useMemo, and useCallback for Performance Optimizations in React

Nov 13, 20192 min read

https://www.youtube.com/watch?v=4BranN3qnDU&ab_channel=CodeBushi Key Takeaways From The Video: 4:40 - When a Parent Component re-renders, all Child...

React.memo, useMemo, and useCallback for Performance Optimizations in React

Higher Order Reducers with React Hooks

Jun 22, 20195 min read

When managing React state with the new useReducer hook, you may find that there are commonly repeated action types and logic in your reducer...

Higher Order Reducers with React Hooks