UNPKG

apeman-react-image

Version:
21 lines (18 loc) 443 B
'use strict' 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> ) } })