Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.31 KB | None | 0 0
  1. <% content_for :title do %>
  2.   Hello World!
  3. <% end %>
  4. <% content_for :javascript do %>
  5.   <%= yield :main %>
  6.   <%= javascript_include_tag 'application' %>
  7. <% end %>
  8. <% content_for :main do %>
  9.   <h1>Hello World</h1>
  10.   <%= react_component("HelloWorldApp", props: @hello_world_props, prerender: false) %>
  11. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement