<% if notice.present? %>

<%= notice %>

<% end %> <% content_for :title, "Todos" %>

Todos

<%= link_to "New todo", new_todo_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
<% @todos.each do |todo| %> <%= render todo %>

<%= link_to "Show this todo", todo, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>

<% end %>