reading-notes

These are my reading notes for Code Fellows


Project maintained by taegorov Hosted on GitHub Pages — Theme by mattgraham

Home

useState() Hook

React provides a HTML/CSS framework in order to build interfaces with components. With vanilla JS/HTML/CSS, you build all that from scratch yourself. React even provides the training wheels for you to add a favicon. React is much more scalable.

You have to extend a class component and use this., whereas you set the state in a functional component.

Document the following Vocabulary Terms:

Stateless, can be created with a function abc syntax or implied with an arrow function. Accept and use props, and don’t use render().

Child components are nested components that inherit props from their parent.