UNPKG

apeman-react-image

Version:
20 lines (17 loc) 421 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> ) } })