apeman-react-image
Version:
apeman react package for image component.
20 lines (17 loc) • 421 B
JSX
import React, {PropTypes as types} from 'react'
import {ApImage, ApImageStyle} from 'apeman-react-image'
const ExampleComponent = React.createClass({
render () {
return (
<div>
<ApImageStyle backgroundColor='#333'
/>
<ApImage src='http://example.com/images/sample.png'
alt='This is it!'
scale='fit'
/>
</div>
)
}
})