Previews

1
2
3
4
5
6
7
8
9
10
11
12
<%= paper_card(title: "Customer") do |card| %>
<% card.with_section do %>
<p>John Smith</p>
<% end %>
<% card.with_section(
title: "Contact information",
actions: [{ content: "Edit", url: "https://bao.agency" }]
) do %>
<p>john.smith@example.com</p>
<% end %>
<% end %>