module Voom::Presenters::DSL::Components::Mixins::FileInputs

Public Instance Methods

file_input(**attribs, &block) click to toggle source
# File lib/voom/presenters/dsl/components/mixins/file_inputs.rb, line 7
def file_input(**attribs, &block)
  self << Components::FileInput.new(parent: self,
                                    **attribs, &block)
end