defmodule LokalWeb.Components.Topbar do @moduledoc """ Component that renders a topbar with user functions/links """ use LokalWeb, :component alias Lokal.Accounts alias LokalWeb.{Endpoint, PageLive} def topbar(assigns) do assigns = %{results: [], title_content: nil, flash: nil, current_user: nil} |> Map.merge(assigns) ~H""" """ end end