Can anyone help me in installing Redux library? I don't know how to install.
You will need react-redux too, in the terminal execute:
yarn add redux react-redux
Then:1.- Create your store2.- Decorate your app with Provider3.- Connect your components to the store with connect.
Thanks for the solution @Hans_Poo!