Notes for Codefellows Code 401 301 201 and 102
react is a SPA single page application that renders a virtual DOM by attaching to Div id=”root” and simply re renders individual pages/page components. It even manipoulates the History object of the browser to inject the generated path to the “html page visited”.
Inside the
source The React docs say that you can use props.children on components that represent ‘generic boxes’ and that don’t know their children ahead of time. this.props.children is used to display whatever you include between the opening and closing tags when invoking a component.
source React composition is a pattern that can be used to break a complex component down to smaller components, and then composing those smaller components to structure and complete your application.
source The React docs say that you can use props.children on components that represent ‘generic boxes’ and that don’t know their children ahead of time. this.props.children is used to display whatever you include between the opening and closing tags when invoking a component.
source It uses the hash in the URL to render the component.
source
To add the link in the menu, use the
Skim the following materials in preparation for the upcoming lecture. Note the following as you browse the material, and be prepared to participate in discussions during lecture