dawarich/app/views/imports/index.html.erb

11 lines
333 B
Text
Raw Normal View History

2024-03-15 18:27:31 -04:00
<div class="w-full">
<div class="flex justify-between items-center">
<h1 class="font-bold text-4xl">Imports</h1>
<%= link_to "New import", new_import_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
</div>
<div id="imports" class="min-w-full">
<%= render @imports %>
</div>
</div>