Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 1.11 KB

File metadata and controls

28 lines (24 loc) · 1.11 KB

Component Based UI

Review, Research, and Discussion

  1. Name 5 Javascript UI Frameworks (other than React)
    • Sencha Ext JS
    • Agular - uses TypeScript
    • Vue
    • Ember
    • Svelte
  2. What’s the difference between a framework and a library?
    • Framework - like a skeleton, the application fills out the rest. It provides an envorionemtn for the code to run.
    • Library - provide operations that can be used by the application.
    • source: stackoverflow.com

Vocab Terms

  • Rendering
    • converting code into an interactive user interface
  • Templates
    • pre-defined UIs that can typically be customized with additional code
  • State
    • A JS object that represents the components current condition.
    • Objects that update their values based on user input.
    • When a state object value changes, the component re-renders.
    • source: