Redux Development Environment Setup on Rails 5.x + React.js + Webpacker
I added Redux to the Rails 5.x + Webpacker + React.js development environment, so I’ll introduce that content.
As a prerequisite, I assume that the Rails 5.x + Webpacker + React.js development environment setup has been completed following this article:
Install Redux-related packages using the yarn add command.
yarn add redux
yarn add react-redux
yarn add redux-devtools --dev
yarn add react-tap-event-plugin
That’s all from the Gemba, where I want to use Redux with Rails as well.
That’s all from the Gemba.