Turbo/Streams

{{/* app/views/posts/create.turbo_stream.tpl */}}
<turbo-stream action="prepend" target="posts">
  <template>
    {{ partial "post_card" .post }}
  </template>
</turbo-stream>

<turbo-stream action="replace" target="post_form">
  <template>
    {{ turbo_frame "post_form" . }}
  </template>
</turbo-stream>