React

React

172 bookmarks
Newest
Creating Shared Ownership for Web Performance from a Cryptic CSS Values
Creating Shared Ownership for Web Performance from a Cryptic CSS Values
Creating ownership for web performance metrics is challenging, especially if you want to ensure your entire organization is pushing along. Alex Russell has an excellent maturity model that captures this enduring journey (see infrequently.org blog). After navigating much of this journey over the past
·calendar.perfplanet.com·
Creating Shared Ownership for Web Performance from a Cryptic CSS Values
React Tutorial
React Tutorial
This React tutorial series helps you learn React JS from the scratch quickly by creating many React applications from simple to complex ones.
·javascripttutorial.net·
React Tutorial
How to Create a Reusable Modal Component in React
How to Create a Reusable Modal Component in React
When using React, we strive to create reusable components as much as we can to limit the number of components and repetition. This keeps your code “DRY”. DRY is a concept you may have come across—it means “Don’t Repeat Yourself”. DRY is a coding prin...
·freecodecamp.org·
How to Create a Reusable Modal Component in React
What are Controlled and Uncontrolled Components in React.js?
What are Controlled and Uncontrolled Components in React.js?
In React.js, managing form inputs and user interactions is a crucial part of building dynamic web applications. Two key concepts that developers need to understand are controlled and uncontrolled components. These concepts define how form data is ha...
Joan Ayebola
·freecodecamp.org·
What are Controlled and Uncontrolled Components in React.js?
How to Style React Components
How to Style React Components
You can only make your React app visually appealing to users with styling. That makes styling a fundamental aspect of building captivating user interfaces. With React's component-based architecture, there are a ton of options for styling. These inclu...
·freecodecamp.org·
How to Style React Components
How to add multiple classes to a ReactJS Component?
How to add multiple classes to a ReactJS Component?
I am new to ReactJS and JSX and I am having a little problem with the code below. I am trying to add multiple classes to the className attribute on each li: <li key={index} className={activeC...
·stackoverflow.com·
How to add multiple classes to a ReactJS Component?
Thinking in React Hooks
Thinking in React Hooks
React introduced hooks one year ago, and they've been a game-changer for a lot of developers. There are tons of how-to introduction resources out there, but I want to talk about the fundamental mindset change when switching from React class components to function components + hooks.
·2019.wattenberger.com·
Thinking in React Hooks