Completed
Import PostsList into App.js
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
React Redux Example Project with Redux Toolkit
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Welcome
- 3 Prerequisite knowledge
- 4 Docs and Faster Pace
- 5 Starter Code
- 6 Create the posts slice
- 7 Add postsReducer to the store
- 8 PostsList component
- 9 Create a posts selector
- 10 Import PostsList into App.js
- 11 postAdded reducer function
- 12 Action creator functions are automatically generated
- 13 Immer.js is active in createSlice
- 14 AddPostForm component
- 15 Saving a New Post
- 16 Move state formatting to a prepare callback
- 17 Redux Devtools
- 18 Create a usersSlice
- 19 Import the usersReducer into the store
- 20 Modify the prepare callback in postsSlice
- 21 Modify the AddPostForm component
- 22 PostAuthor component
- 23 Import PostAuthor into PostsList
- 24 Install date-fns dependency
- 25 Handling date data in postsSlice
- 26 TimeAgo component
- 27 Import TimeAgo into PostsList
- 28 Display most recent post first
- 29 Adding reaction data to the postsSlice
- 30 ReactionButtons component
- 31 Import ReactionButtons into PostsList