Packages

Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.

Current section

Files

Jump to
raxol lib raxol renderer main.ex
Raw

lib/raxol/renderer/main.ex

defmodule Raxol.Renderer.Main do
@moduledoc """
Default renderer module for the Raxol pipeline.
Delegates to the main UI rendering process.
"""
@doc """
Handles the final painted output from the rendering pipeline.
Delegates to Raxol.UI.Rendering.Renderer.
"""
def render(painted_output) do
Raxol.UI.Rendering.Renderer.render(painted_output)
:ok
end
end