Previews

1
2
3
4
5
6
7
8
9
10
11
<%= paper_form_layout do |form_layout| %>
<% form_layout.with_item do %>
<%= paper_text_field(label: "Store name") %>
<% end %>
<% form_layout.with_item do %>
<%= paper_text_field(label: "Account email") %>
<% end %>
<% form_layout.with_item do %>
<%= paper_button(submit: true, primary: true) { "Submit" } %>
<% end %>
<% end %>