Adding a simple react component written in ruby to your Rails app

suggest change
  1. Add the hyperloop gem to your rails (4.0 - 5.1) Gemfile
  2. bundle install
  3. Add the hyperloop manifest to the application.js file:

javascript // app/assets/javascripts/application.js … //= hyperloop-loader

  1. Create your react components, and place them in the hyperloop/components directory ```
# app/hyperloop/components/hello_world.rbclass HelloWorld < Hyperloop::Componentafter_mount doevery(1.second) { mutate.current_time(Time.now) }endrender do"Hello World!  The time is now: #{state.current_time}"endend
5. Components act just like views.  They are "mounted" using the `render_component` method in a controller:
# somewhere in a controller:...def hello_worldrender_component # renders HelloWorld based on method nameend

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Integrating React.js with Rails using Hyperloop:
*Adding a simple react component written in ruby to your Rails app

Table Of Contents
55CSV
66Integrating React.js with Rails using Hyperloop