Tic-Tac-Toe - Following the Tutorial: Intro to React
GitHub Cards App - From React: Getting Started on Pluralsight by Samer Buna from JsComplete
- Components
- Like funtions
- Input: props, state | Output: UI
- Reusable and composable
- <Component />
- Can manage a private state
- Can be either function component or class component.
- Prefer to use function components - simpler
- Class components are a bit more powerful
 
 
- Reactive updates
- React will react
- Take updates to the browser
 
- Virtual views in memory
- Generate HTML using JavaScript
- No HTML template language
- Tree reconciliation