Covers file structure, action creators, reducers, combining reducers, provider & connect. Sample app with a song list built with Redux data. Updating state with action creators.
How to fetch data from an API inside React using Redux and Redux-Thunk. Using that data to display a list of blog posts.
Explains the Redux cycle in a React app. Redux replaces the standard state cycle in a React app, making it more manageable for large applications. Covers Actions, Action Creators, Dispatch, Reducers, State and Redux Store.
Creating a responsive masonry style image grid in React. Will also work for cards. This method uses componentDidMount so will not work with statis site generators like Gatsby.
Mapped arrays in React require each item to have a unique hey. This post covers why and how to implement them.
Making API requests with Axios, using Async Await for returned data. Looping over returned data. Axios custom client.
Intercepting the default form behaviour. Sending information from child (form) to parent (App) by invoking callback functions.
In uncontrolled elements the value is stored in the DOM, in controlled elements the value is stored in the application inside the component with state.
How to change the className of a component based on a set of conditions, which results in conditional styling of components.
Introduction to the React Component lifecycle. componentDidMount and other component lifecycle functions
Error handling variable in State. Displaying error message conditionally and DRY using components and if/else statement
Learning to nest, re-use and configure Components. Components are configured with props. Re-usable components keep code DRY
The very basics of React. Importing React and React-DOM. What are components. The difference between JSX and HTML