UNPKG

332 BJSXView Raw
1'use strict'
2
3import React from 'react'
4import {ApText} from 'apeman-react-text'
5import {ApForm} from 'apeman-react-form'
6
7const ExampleComponent = React.createClass({
8 render () {
9 return (
10 <div>
11 <ApFormStyle />
12 <ApForm>
13 <ApText name='account_name'/>
14 </ApForm>
15 </div>
16 )
17 }
18})