Reilly O'Donnell
Reilly's Blog

Reilly's Blog

Follow
homebadges
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

Getting closure with React

Apr 22, 20232 min read 61 views

What's a closure? Closures are like a backpack for functions. The backpack holds all of the values the function needs from its original environment,...

Getting closure with React

6 Code Smells In React I Look Out For

Jan 6, 20232 min read 164 views

I've recently undergone analyzing and improving a React application's performance and have noticed some pretty serious code smells that affect both...

6 Code Smells In React I Look Out For

⚛ React Tips - You're misusing the React useEffect hook (probably)

Jan 6, 20231 min read 65 views

This is def one of the most common mistakes I've seen in both personal and enterprise applications. The useEffect hook exists to sync an external...

⚛ React Tips - You're misusing the React useEffect hook (probably)

Understanding React ⚛ - ep.1

Sep 19, 20226 min read 221 views

tldr; it's costly to define components inside other components · Take a look at this code below. It's a contrived example where we want the user to be...

Understanding React ⚛ - ep.1

React Essentials: Props

Sep 28, 20213 min read 132 views

They're kind of a big deal · Props - explained The React docs defines props as When React sees an element representing a user-defined component, it...

React Essentials: Props