<%= cell(:comment, @comment) %>
Wordt gerenderd door een helper (ironisch)
comment = Comment.new(body: "Hoi")
cell(:comment, comment) #=> "<div>... HTML"
Helper doet het volgende:
CommentCell.new(comment).call
Demo