mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
11 lines
396 B
Plaintext
11 lines
396 B
Plaintext
<%= modal do %>
|
|
<article class="mx-auto p-4 space-y-4 w-screen max-w-xl">
|
|
<header class="flex justify-between">
|
|
<h2 class="font-medium text-xl"><%= t(".new_transaction") %></h2>
|
|
<%= lucide_icon "x", class: "w-5 h-5 text-gray-500", data: { action: "click->modal#close" } %>
|
|
</header>
|
|
|
|
<%= render "form", transaction: @transaction, entry: @entry %>
|
|
</article>
|
|
<% end %>
|