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/component.ex

10 lines
127 B
Elixir
Raw Normal View History

2020-07-24 19:54:38 +00:00
defmodule Temple.Components.Component do
2021-01-02 18:21:48 +00:00
use Temple.Component
2020-07-24 19:54:38 +00:00
2021-01-02 18:21:48 +00:00
render do
div do
@inner_content
2020-07-24 19:54:38 +00:00
end
end
end