module Voom::Presenters::DSL::Components::Mixins::Grids
Public Instance Methods
grid(color: nil, **attributes, &block)
click to toggle source
# File lib/voom/presenters/dsl/components/mixins/grids.rb, line 7 def grid(color: nil, **attributes, &block) self << Components::Grid.new(parent: self, color: color, **attributes, &block) end