mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-17 04:22:28 +00:00
12 lines
332 B
JavaScript
12 lines
332 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} />;
|
|
}
|
|
}
|