App API
Use core components
class ExampleApp::App < Matestack::Ui::App
def response
heading size: 1, text: "My Example App Layout"
end
endUse registered custom components
class ExampleApp::Pages < Matestack::Ui::Page
def response
heading size: 1, text: "My Example App Layout"
# calling your registered card component without using matestack_component helper!
card title: "hello"
end
endYielding Matestack pages
Transitions between pages without page reload
Transitions between pages with loading element
Last updated
Was this helpful?