class NfgUi::Components::Elements::FormControl

FormControl doc coming soon

Public Instance Methods

render() click to toggle source
# File lib/nfg_ui/components/elements/form_control.rb, line 8
def render
  # this is a place holder, to indicate that this
  # component is not yet rendering a true bootstrap element
  content_tag(:b, class: 'text-danger') do
    'Form Control Element Component'
  end
end