Redux Fundamentals
Before we learn what redux is, we must understand what is state in javascript applications. In concrete terms state is javascript object
State of the app is plain javascript object.
const state = {
isLoggedIn:true
}
how to reliably keep track of ...
kamalpatel.hashnode.dev6 min read