Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Redux Demo

Latest
Compare
Choose a tag to compare
@vishalnagda1 vishalnagda1 released this 10 May 19:19
· 8 commits to master since this release

Redux Demo

Repository version

Redux Demo is a React application to demonstrate the implementation of Redux library in a React application. This application performs the basic functionality of fetching posts and creating new post, and stores the data in application level state.

This application is using open source APIs provided by JSONPlaceholder to create and retrieve the posts.

Dependencies
  1. redux : Redux is a predictable state container for JavaScript apps.
  2. react-redux : Official React bindings for Redux.
  3. redux-thunk : Thunk middleware for Redux.
Future Plan
  • Upgrade the code and make use of static getDerivedStateFromProps instead of UNSAFE_componentWillReceiveProps component lifecycle. Read more...
  • Disable the form submit button until the request is not completed.