reading-notes

Aloysious' Codefellows Reading Notes

View the Project on GitHub

Code 301 Reading Notes

Class 01

Next Lesson ==>

<== Home 🏠

Introduction to React and Components

React Tutorial through Passing Data Through Props

React Docs - hello world

The smallest React example looks like this:

ReactDOM.render(
  <h1>Hello, world!</h1>,
  document.getElementById('root')
);

It displays a heading saying “Hello, world!” on the page.

Things to consider when reading React documentation:

React Docs - introducing JSX

to be continued…

React Docs - rendering elements

to be continued…

React Docs - Components and props

to be continued…

Reading

<== Home 🏠