diff options
Diffstat (limited to 'app/components/Img.android.js')
| -rw-r--r-- | app/components/Img.android.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/components/Img.android.js b/app/components/Img.android.js new file mode 100644 index 0000000000..25e5e474c9 --- /dev/null +++ b/app/components/Img.android.js @@ -0,0 +1,8 @@ +import React from 'react'; +import { Image, Component } from 'reactxp'; + +export default class Img extends Component { + render(): React.Element<*> { + return (<Image style={ this.props.style } source={ this.props.source }/>); + } +}
\ No newline at end of file |
