apeman-react-photo
Version:
apeman react package for photo components.
22 lines (19 loc) • 358 B
JSX
import React from 'react'
import {
ApPhoto,
ApPhotoStyle,
ApPaperPhoto,
ApPaperPhotoStyle
} from 'apeman-react-photo'
const ExampleComponent = React.createClass({
render () {
return (
<div>
<ApPhotoStyle />
<ApPaperPhotoStyle />
<ApPaperPhoto imgSrc="http://example.com"/>
</div>
)
}
})