Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
<%= paper_frame do |frame| %>
<%= paper_page(title: "Toast example") do %>
<%= paper_button(data: {
controller: "paper",
target: "#demo-toast",
action: "paper#showToast",
}) { "Show toast" } %>
<% end %>
<% frame.with_toasts do %>
<%= paper_toast(id: "demo-toast", hidden: true) { "Message sent" } %>
<% end %>
<% end %>