Class: App::ContentComponent

Inherits:
SparkComponents::Component
  • Object
show all
Defined in:
app/components/spark/app/content_component.rb

Instance Method Summary collapse

Instance Method Details

#renderObject



24
25
26
27
28
29
30
31
# File 'app/components/spark/app/content_component.rb', line 24

def render
  data_attr scroll: true
  (:div, tag_attrs) do
    concat header
    concat nav
    concat @yield
  end
end