How do I make these functions work in .heex?
(submit, search_input, page_path, form_for)
deps:
elixir: "~> 1.16.2",
{:phoenix, "~> 1.7.12"},
.heex file:
<%= form_for @conn, page_path(@conn, :index), [method: :get, class: "pull-right"], fn f -> %>
<label>
<%= search_input(f, :q) %>
<%= submit "Search" %>
</label>
<% end %>