gitcoinco/code_fund_ads

View on GitHub
app/views/images/index.html.erb

Summary

Maintainability
Test Coverage
<%= render(PageComponent.new) do |component| %>
  <% component.with(:header) do %>
    <%= render(Page::HeaderComponent.new(title: "Images", buttons: [
      link_to("Upload Image", new_image_path, class: "btn btn-primary")
    ])) %>
  <% end %>
  <% component.with(:body) do %>
    <%= render "/images/grid", imageable: @imageable, images: @images %>
  <% end %>
<% end %>