Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <script>
  2. ReactDOM.render(
  3. React.createElement(
  4. CommentBox,
  5. {
  6. post_id: "<%= post.id %>",
  7. user_name: "<%= current_user.to_s %>",
  8. comments: "<%= ActiveModel::ArraySerializer.new(post.comments, each_serializer: CommentSerializer).to_json %>"
  9. }
  10. ),
  11. document.getElementById("post-<%= post.id %>")
  12. );
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement