lexivo/app/views/todos/index.html.erb
2026-03-30 13:18:39 +02:00

15 lines
262 B
Plaintext

<% content_for :title, "Todo App" %>
<div class="container">
<%= turbo_stream_from "todos" %>
<h1>Todos</h1>
<div id="todo_form">
<%= render "form", todo: @todo %>
</div>
<ul id="todos" class="todo-list">
<%= render @todos %>
</ul>
</div>