Previews

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