All public logs
Combined display of all available logs of ElixirBlocks. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 06:13, 26 March 2023 Admin talk contribs created page How to Render Dynamic Variables in a Phoenix LiveView (Created page with " <source> defmodule AppWeb.PageLive do use AppWeb, :live_view def mount(_params, _session, socket) do {:ok, assign(socket, greeting: "Hello World")} end def render(assigns) do ~H""" <%= assigns.greeting %> """ end end </source>")