class AppSubNavigationComponent::Item
Attributes
Public Class Methods
Source
# File app/components/app_sub_navigation_component.rb, line 19 def initialize(href:, text: nil, selected: false) @href = href @text = html_escape(text) @selected = selected end
Public Instance Methods
Source
# File app/components/app_sub_navigation_component.rb, line 25 def call content || @text || raise(ArgumentError, "no text or content") end