2 questions
Tooling
0
votes
0
replies
54
views
Rails form components with Phlex
How are people building form components with Phlex? Using the gem Superform, calling Rails form_with helper in the Form component, or something else?
My current form field helpers are pretty ...
2
votes
1
answer
180
views
Phlex multiple yield
Is it possible for a Phlex component to yield more than once? For instance
class Component < Phlex::HTML
def view_template
div do
yield
span { plain "component" }
...