Created
December 25, 2020 15:19
-
-
Save donrestarone/796ddd6a25f1a970b3f33647e9d1e2e0 to your computer and use it in GitHub Desktop.
turbo stream with rails 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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