Now i am making React app on top off Ruby on Rails app (with out react-rails gem) by using browserify-rails to compile js files.
So i tried to us react-router to con
If you want to redirect all your request to single page, that's easy:
# config/routes.rb root 'dash_board#index' get '*path', to: 'dash_board#index'
If Rails will render your React components on DashBoard#index page, React's router will intercept it from there.