reading-notes

These are my reading notes for Code Fellows


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

Home

Hooks API

It is not actually a multi-page app, it just behaves like one. React is an SPA.

Inside a

That is just how React works. It renders everything unless you tell it not to.

displays whatever you include between the opening and closing tags when invoking a component. (source)

Document the following Vocabulary Terms:

What Is React Composition? React Composition is a development pattern based on React’s original component model where we build components from other components using explicit defined props or the implicit children prop. (source)

Children allow you to pass components as data to other components, just like any other prop you use. (source)

The # has been around as a part of the URL for quite some time now. It precedes an optional fragment of the URL that points to a specific resource in the web page. (source)

Standard link routing that we’re used to.