Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <% @posts.each do |post| %>
  2.  
  3. ....
  4. ....
  5. ....
  6.  
  7. <%= react_component(
  8. "CommentBox",
  9. post_id: post.id,
  10. user_name: current_user.to_s,
  11. comments: ActiveModel::ArraySerializer.new(
  12. post.comments.includes(:user),
  13. each_serializer: CommentSerializer
  14. ).to_json
  15. ) %>
  16. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement