BathHacked/energy-sparks

View on GitHub
app/components/prompt_list_component/prompt_list_component.html.erb

Summary

Maintainability
Test Coverage
<div id="<%= id %>" class="prompt-list-component <%= classes %>">
  <% if title? || link? %>
    <div class="row">
      <div class="col d-flex flex-wrap justify-content-between align-items-center">
        <% if title? %>
          <h3><%= title %></h3>
        <% end %>
        <% if link? %>
          <div>
            <%= link %>
          </div>
        <% end %>
      </div>
    </div>
  <% end %>
  <% prompts.each do |prompt| %>
    <%= prompt %>
  <% end %>
</div>