18F/identity-idp

View on GitHub
app/views/layouts/component_preview.html.erb

Summary

Maintainability
Test Coverage
<!doctype html>
<html>
  <head>
    <title>Component Preview</title>
    <%= stylesheet_link_tag 'application', nopush: false %>
    <%= render_stylesheet_once_tags %>
    <%= stylesheet_link_tag 'utilities', nopush: false %>
  </head>
  <body class="height-auto padding-2 <%= params.dig(:lookbook, :display, :body_class) %>">
    <% if params.dig(:lookbook, :display, :form) == true %>
      <form>
        <%= yield %>
        <%= render SubmitButtonComponent.new(class: 'margin-top-5') do %>
          <%= t('forms.buttons.submit.default') %>
        <% end %>
      </form>
    <% else %>
      <%= yield %>
    <% end %>
    <%= javascript_packs_tag_once('application') %>
    <%= render_javascript_pack_once_tags %>
  </body>
</html>