<%= turbo_stream_from @post %>

<%= render @post %>

<h2>Comments</h2>

<div id="comments">
  <%= render partial: "comments/comment", collection: @post.comments, locals: { post: @post } %>
</div>

<div data-turbo-permanent>
  <%= render partial: "comments/new", locals: { post: @post, comment: @post.comments.new } %>
</div>

<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>