rx/presenters

View on GitHub
app/demo/events/actions/dialogs/show_dialog.pom

Summary

Maintainability
Test Coverage
Voom::Presenters.define(:show_dialog) do
  dialog id: :my_dialog do
    title "Show Dialog"
    body 'This is an example and event opening a dialog'

    actions do
      button 'Close'
      button 'Disabled action', disabled: true
    end
  end
end