Class: Uistiti::Alpha::NavbarPreview
- Inherits:
-
ViewComponent::Preview
- Object
- ViewComponent::Preview
- Uistiti::Alpha::NavbarPreview
- Defined in:
- app/components/previews/uistiti/alpha/navbar_preview.rb
Instance Method Summary collapse
Instance Method Details
#playground(color: :primary) ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'app/components/previews/uistiti/alpha/navbar_preview.rb', line 12 def playground(color: :primary) render(Uistiti::Alpha::Navbar.new(color:)) do || .with_logo{'UISTITI'} .with_links([ { path: '#', method: :get, color: 'inverse-base', text: 'Link 1' }, { path: '#', method: :get, color: 'inverse-base', text: 'Link 2' }, { path: '#', method: :get, color: 'inverse-base', text: 'Link 3' }, ]) end end |