Refactor New/Edit Store modals/pages to Razor components

This commit is contained in:
2023-12-03 01:10:09 +00:00
parent 595a691da2
commit 74cb6109c9
14 changed files with 201 additions and 146 deletions

View File

@ -0,0 +1,13 @@
@inherits LayoutComponentBase
<turbo-frame id="modal" data-modal-target="frame">
<article class="card">
<header class="card__header row">
<h2 class="row__fill">
<SectionOutlet SectionName="modalTitle" />
</h2>
<button class="button modal__close-button" data-action="modal#close">&#x1F5D9;</button>
</header>
@Body
</article>
</turbo-frame>