React

A declarative library to build web and native UI.

Data categories

//without JSX (syntax sugar)
React.createElement('h1', { title:'heading', onClick: handler }, 'hello');

//Portals
<div>
  {createPortal(<Tool/>, $('.tool'), key?)}
</div>

Virtual DOM