<%= turbo_stream_from @post %>
<%= render @post %>

<%= turbo_frame_tag :comments, src: [@post, :comments] %>

<%= render partial: "comments/form", locals: { post: @post, comment: Comment.new } %>
<div>
  <%= link_to "Edit", edit_post_path(@post) %> |
  <%= link_to "Destroy", post_path(@post),
    "data-turbo-method": :delete,
    "data-turbo-confirm": "Are you sure?" %> |
  <%= link_to "Back to posts", posts_path %>
</div>