blob: 303fe4e5cb8c479b6e727848a5f5fb93245fb4ea (
plain)
1
2
3
4
5
6
7
8
9
|
// @flow
import React from 'react';
import { Image, Component } from 'reactxp';
export default class Img extends Component {
render(){
return (<Image style={ this.props.style } source={ this.props.source }/>);
}
}
|