11 lines
200 B
Elixir
11 lines
200 B
Elixir
defmodule Llmex.PostLayout do
|
|
use Tableau.Layout, layout: Llmex.RootLayout
|
|
use Phoenix.Component
|
|
|
|
def template(assigns) do
|
|
~H"""
|
|
<%= {:safe, render(@inner_content)} %>
|
|
"""
|
|
end
|
|
end
|