## FeaturedInputView

 ~~~jsx
  import { FeaturedInputView } from 'generics/FormFeaturedInputViews'
  ~~~

## InputView

 ~~~jsx
  import { InputView } from 'generics/FormInputViews'
  ~~~

   Example:

   ~~~jsx
      import React, { Component } from 'react'
      import { InputView } from 'generics/FormInputViews'

       class WorkingComponent extends Component {

           state = {
              currentValue: ''
          }

           setValue = e => {
              this.setState({
              currentValue: e.target.value
              })
          }
          
          render() {
              const { currentValue } = this.state
              return <InputView value={currentValue} onChange={this.setValue} />
          }
      }

       export default WorkingComponent
  ~~~

  ## NumberInputView
  
  ~~~jsx
  import { NumberInputView } from 'generics/FormInputViews'
  ~~~

  ## SelectView

  ~~~jsx
  import { SelectView } from 'generics/FormInputViews'
  ~~~

  ## Textarea

  ~~~jsx
  import { Textarea } from 'generics/FormInputViews'
  ~~~

