apeman-react-image
Version:
apeman react package for image component.
21 lines (18 loc) • 443 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>
)
}
})