mirror of
https://github.com/we-promise/sure.git
synced 2026-04-25 06:54:07 +00:00
7 lines
235 B
Plaintext
7 lines
235 B
Plaintext
<%# locals: (chat:) %>
|
|
|
|
<%= styled_form_with model: chat.messages.build, url: chat_messages_path(chat), method: :post, class: "space-y-4" do |f| %>
|
|
<%= f.text_area :content, size: "50x5" %>
|
|
<%= f.submit "Send message" %>
|
|
<% end %>
|