Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%= paper_button(data: {
controller: "paper",
target: "#demo-modal",
action: "paper#openModal",
}) { "Open" } %>
<%= paper_modal(
id: "demo-modal",
title: "Reach more shoppers with Instagram product tags",
open: true,
) do |modal| %>
<% modal.with_section do %>
<p>Section 1</p>
<% end %>
<% modal.with_section do %>
<p>Section 2</p>
<% end %>
<% modal.with_primary_action { "Add instagram" } %>
<% modal.with_secondary_action { "Learn more" } %>
<% end %>