mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
import React, { PureComponent } from 'react';
|
|
|
|
export default class ImageView extends PureComponent {
|
|
static displayName = 'Image';
|
|
|
|
static version = '0.0.0';
|
|
|
|
static defaultProps = {
|
|
src: '//img.alicdn.com/tfs/TB1knm4bqNj0u4jSZFyXXXgMVXa-240-240.png_100x100.jpg',
|
|
};
|
|
|
|
render() {
|
|
return <img {...this.props} />;
|
|
}
|
|
}
|