Skip to content

Instantly share code, notes, and snippets.

@samuelsilvadev
Last active October 2, 2018 07:26
Show Gist options
  • Save samuelsilvadev/a15e468571f701ff0310d9a5e56bf272 to your computer and use it in GitHub Desktop.
Save samuelsilvadev/a15e468571f701ff0310d9a5e56bf272 to your computer and use it in GitHub Desktop.
My study guide to REACT.

What is it React?

A JavaScript library for building user interfaces. By Facebook :D

Components

  • Piece of the UI
  • Reusable
  • Isolated

Many Componentes are used to create complex UI.

It's like Lego party :D.

Props?

They are like HTML attributes.

Examples:

  <Title name="React is awesome" />
  <Box color="red" />
  <FormSignIn data={ ... } />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment