All modules, configs, paths, and references updated. 836 tests pass, zero warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
299 B
Elixir
16 lines
299 B
Elixir
defmodule BerrypodWeb.Shop.Contact do
|
|
use BerrypodWeb, :live_view
|
|
|
|
@impl true
|
|
def mount(_params, _session, socket) do
|
|
{:ok, assign(socket, :page_title, "Contact")}
|
|
end
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<BerrypodWeb.PageTemplates.contact {assigns} />
|
|
"""
|
|
end
|
|
end
|