Rails Controller Integration
Last updated
Was this helpful?
Was this helpful?
class SomePage < Matestack::Ui::Page
required :foo
optional :bar
def response
div id: "my-page" do
plain context.foo # "bar"
plain context.bar # "baz"
end
end
end