UNPKG

228 BJSXView Raw
1'use strict'
2
3import React from 'react'
4import {ApFaIcon} from 'apeman-react-icon'
5
6const ExampleComponent = React.createClass({
7 render () {
8 return (
9 <div>
10 <ApFaIcon type='money'/>
11 </div>
12 )
13 }
14})
15