Files
sure/app/views/layouts/imports.html.erb
Zach Gollwitzer ab6fdbbb68 Component namespacing (#2463)
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT

* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT

* Update stimulus controller references to use namespace

* Fix remaining tests
2025-07-18 08:30:00 -04:00

30 lines
718 B
Plaintext

<%= render "layouts/shared/htmldoc" do %>
<div class="flex flex-col h-full bg-container">
<header class="flex items-center justify-between p-8">
<%= render DS::Link.new(
variant: "icon",
icon: "arrow-left",
href: content_for(:previous_path) || imports_path
) %>
<nav>
<%= yield :header_nav %>
</nav>
<%= render DS::Link.new(
variant: "icon",
icon: "x",
href: imports_path
) %>
</header>
<main class="grow px-8 md:pt-12 pb-32 overflow-y-auto">
<div class="flex md:hidden justify-center w-full">
<%= yield :mobile_import_progress %>
</div>
<%= yield %>
</main>
</div>
<% end %>