Skip to content

Instantly share code, notes, and snippets.

@donrestarone
Created December 25, 2020 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donrestarone/796ddd6a25f1a970b3f33647e9d1e2e0 to your computer and use it in GitHub Desktop.
Save donrestarone/796ddd6a25f1a970b3f33647e9d1e2e0 to your computer and use it in GitHub Desktop.
turbo stream with rails 6
<p id="notice"><%= notice %></p>
<h1>Tweets</h1>
<table>
<thead>
<tr>
<th colspan="3"></th>
</tr>
</thead>
<div class="d-flex ">
<%= turbo_stream_from "tweets" %>
<%= turbo_frame_tag "tweets" do %>
<%= render @tweets %>
<% end %>
</div>
</table>
<br>
<%= link_to 'New Tweet', new_tweet_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment