This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
temple/test/support/components/component2.ex
2020-07-24 15:54:38 -04:00

12 lines
200 B
Elixir

defmodule Temple.Components.Component2 do
@behaviour Temple.Component
@impl Temple.Component
def render do
quote do
div class: @class do
@children
end
end
end
end