thirteen-tien-len/app/views/shared/_micropost_form.html.haml
2023-11-15 16:11:32 +00:00

9 lines
273 B
Plaintext

= simple_form_for(@micropost) do |f|
= f.error_notification
.form-inputs
= f.text_area :content, placeholder: "I got something to say..."
= f.hidden_field :micropostable_type
= f.hidden_field :micropostable_id
.form-actions
= f.button :submit, "Post"