Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 2.69 KB

README.md

File metadata and controls

19 lines (10 loc) · 2.69 KB

udemy-modern-react-with-redux

A collection of ReactJS sample exercises based on tutorial videos of Udemy's Modern React with Redux course, created by Stephen Grider

Sample Apps

  • fake-youtube - A simple web SPA which demonstrate the fundamental concepts of ReactJS such as Component, State & Props.

  • books-list - This sample demonstrate the concepts of React-Redux such as Reducers, Action, ActionCreators, map state to props, map action to props & containers.

  • weather - This sample demonstrate calling Backend API from within Action Creator, transform the result through using redux-promise library, rendering Chart component using react-sparklines, display google maps and few other more.

  • blog - This 3rd sample demonstrates how to implement Pages navigation within a ReactJS app through using react-router library. The sample also demonstrates building a Form through using redux-form library as well.

  • blog-2018 - This is the 2018 version of 3rd sample which demonstrates how to implement Pages navigation within a ReactJS app through using react-router-dom library and building a Form through using redux-form library, to implement the App which perform CRUD features.

  • reselect-demo - A sample app which demonstrates the usage of reselect plugin, for displaying a list of selected items from a state which returns a list of Items and a state which returns a list of seleted item's IDs. Example of reselect usage is in selecting products and put them into shopping chart.

  • animation-demo - A sample app which demonstrates simple animation that is applied on React component, through using CSS animation and React CSS Transition Group library.