Completed
Dispatching Actions
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Learn Redux from Scratch
Automatically move to the next video in the Classroom when playback concludes
- 1 Introduction
- 2 What is Redux?
- 3 Pros and Cons of Redux
- 4 Is Redux for You?
- 5 Setting Up the Development Environment
- 6 Course Structure
- 7 Function Programming
- 8 What is Functional Programming?
- 9 Functions as First-Class Citizens
- 10 Higher-order Functions
- 11 Functional Composition
- 12 Composing and Piping
- 13 Currying
- 14 Pure Functions
- 15 Immutability
- 16 Updating Objects
- 17 Updating Arrays
- 18 Enforcing Immutability
- 19 Immutable.js
- 20 Immer
- 21 Redux Intro
- 22 Redux Architecture
- 23 Your First Redux Application
- 24 Designing the Store
- 25 Defining the Actions
- 26 Creating a Reducer
- 27 Creating the Store
- 28 Dispatching Actions
- 29 Subscribing to the Store
- 30 Action Types
- 31 Action Creators
- 32 Exercise
- 33 Solution