mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:25:48 +00:00
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
import React, { PureComponent } from 'react';
|
|
|
|
export default class AView extends PureComponent {
|
|
static displayName = 'A';
|
|
|
|
static version = '0.0.0';
|
|
|
|
render() {
|
|
return <a {...this.props} />;
|
|
}
|
|
}
|