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