Skip to the content.

Component Based UI


Review, Research, and Discussion

Name 5 Javascript UI Frameworks (other than React)

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


Document the following Vocabulary Terms

Rendering :

it is a process that is triggered by a change of state in some component of your application.

Templates :

React templates are sets of ready-to-use parts of code built using React technology for the development of dynamic user interfaces.

State :

The state is 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.


Preparation Materials :

react hello world

introducing JSX

const element = (
  <h1 className="greeting">
    Hello, world!
  </h1>
);
const element = React.createElement(
  'h1',
  {className: 'greeting'},
  'Hello, world!'
);

rendering elements

<div id="root"></div>