Reading-Notes

Class 26 Summary :

Component Based UI :

Name 5 Javascript UI Frameworks (other than React):

  1. Backbone.js
  2. Angular.
  3. Vue.js
  4. Polymer.
  5. jQuery.

What’s the difference between a framework and a library?

Document the following Vocabulary Terms :

Term  
Rendering a technique for sharing code between React components using a prop whose value is a function. A component with a render prop takes a function that returns a React element and calls it instead of implementing its own render logic.
Templates sets of ready-to-use parts of code built using React technology for the development of dynamic user interfaces. React templates may contain full-fledged pages with a pre-built design, component compositions, stand-alone components, styling (like fonts, colors theme effects, background styles, icons), plugins, widgets, libraries
State an instance of React Component Class can be defined as an object of a set of observable properties that control the behavior of the component. In other words, the State of a component is an object that holds some information that may change over the lifetime of the component

React :

JSX :

Rendering Elements:

Sources:

source1 source2 source3