-
Notifications
You must be signed in to change notification settings - Fork 17
Reading: Class 27 Forms and Props
Karl Polintan edited this page Apr 25, 2019
·
1 revision
27: Forms and Props
Skim components and props
- Function and Class Components
- Rendering a Component
- Composing Components
- Extracting Components
- Props are Read-Only pure/impure functions
Skim state and lifecycle
- Converting a Function to a Class
- Adding Local State to a Class
- Adding Lifecycle Methods to a Class mounting/unmounting component timer
- Using State Correctly Do Not Modify State Directly
- The Data Flows Down
Skim handling events
- Passing Arguments to Event Handlers
Skim forms
- Controlled Components
- The textarea Tag
- The select Tag
- The file input Tag
- Handling Multiple Inputs
- Controlled Input Null Value
- Alternatives to Controlled Components
- Fully-Fledged Solutions