'use strict'

import React from 'react'
import {ApText} from 'apeman-react-text'
import {ApForm} from 'apeman-react-form'

const ExampleComponent = React.createClass({
  render () {
    return (
      <div>
        <ApFormStyle />
        <ApForm>
          <ApText name='account_name'/>
        </ApForm>
      </div>
    )
  }
})
