postland/lib/postland_web/live/profile_live.ex
2024-09-29 19:53:00 -05:00

9 lines
154 B
Elixir

defmodule PostlandWeb.ProfileLive do
use PostlandWeb, :live_view
def render(assigns) do
~H"""
<div>Nothing here yet.</div>
"""
end
end