CLASS 26
Component Based UI
REVIEW, RESEARCH AND DISCUSS
Name 5 Javascript UI Frameworks other than React
-
Angular
-
Ext JS
-
Vue
-
Ember
-
Svelte 3
What’s the difference between a framework and a library?
- The technical difference between a framework and library lies in a term called inversion of control. When you use a library, you are in charge of the flow of the application. You are choosing when and where to call the library. When you use a framework, the framework is in charge of the flow.
TERMS:
Rendering
- Rendering means to show the output of the code in the browser.
Templates
- A template is a chuck code of HTML that you need to inject onto the page.
State
- State is a status of a program or an object.