πŸ”₯ Learn React in 10 Tweets (with hooks)

Chris Achard - Sep 20 '19 - - Dev Community

This was originally posted as a twitter thread: https://twitter.com/chrisachard/status/1175022111758442497

πŸ”₯ Learn React in 10 tweets (with hooks) πŸ‘‡

1.

How React Works:

  • you display data on a webpage
  • a user interacts with it
  • now the data changes...
  • ...and you want the webpage to look different

React does that for you! πŸ’―

How React Works

2.

To think in React:

Break your UI into custom components.

Each component is responsible for displaying itself, based on the external and internal data available.

Build trees of these components for a full UI

Think in React

3.

Components are functions that return JSX

JSX looks like HTML, but is actually JavaScript

Inside of JSX, use curly braces to contain JS

A lot of people go "YUCK!" when they see what looks like HTML mixed into JS, but JSX is actually one of the things that makes React awesome πŸ¦„

Components and JSX

4.

After defining a function component, you can use it within another component - it is a "custom component"

Use this method to build a "tree" of components that defines your entire UI

Custom Components

5.

Data that comes in from the outside of a component is called "props" (properties)

This can be passed from a parent to a child through JSX attributes

Props come into function components as the first argument to the function.

Props

6.

Internal, changeable data is called "state".

State is defined by the useState function, which returns the data, and a function to change that data (in an array).

NEVER set the state variable directly - always use that function (because of the next point πŸ‘‡)

State

7.

When state or props change, your component updates AUTOMATICALLY πŸŽ‰

✨ This is the magic of React! ✨

You almost never have to go into the DOM yourself

(If you think that you do - you're probably trying to do it the "hard way")

Automatic Updates

8.

Make lists of things by looping over an array of data with map

Return an element from each loop iteration

Provide a unique key to each element in the list to ensure best performance

Lists in JSX

9.

2 built-in ways to style components:

  1. Set the class with className, and use regular CSS files

  2. Set inline styles with style={{ }} and camel cased keys
    πŸ‘‰ notice the double curly braces

Style Components with CSS

10.

Perform Async functions and side effects inside of useEffect (takes a callback)

The second argument is an array of dependencies.

Include any variable the useEffect uses that might change, or an empty array if there are none.

Async Functions and Side Effects

Bonus

That's it! Most of React is just special cases of those 10 points.

Now: want to watch πŸ‘€ this crash course as a screencast? Your wish is granted! πŸŽ‰

Check it out for a better understanding of each point πŸ‘‡

https://www.reactscreencasts.com/crash_courses/react_with_hooks

Β 

Like this crash course?

I post more on twitter: @chrisachard
Or join the newsletter! https://chrisachard.com/newsletter/

Thanks for reading!

. . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player