Method: Header::Component#initialize

Defined in:
app/components/lookbook/header/component.rb

#initialize(debug_menu: false, project_name: nil, project_logo: nil, **html_attrs) ⇒ Component

Returns a new instance of Component.



5
6
7
8
9
10
# File 'app/components/lookbook/header/component.rb', line 5

def initialize(debug_menu: false, project_name: nil, project_logo: nil, **html_attrs)
  @debug_menu = debug_menu
  @project_logo = 
  @project_name = project_name
  super(**html_attrs)
end