mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 22:10:27 +00:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default function SubModule({ name }) {
|
|
return <div>hello, {name}</div>;
|
|
}
|
|
|
|
SubModule.propTypes = {
|
|
name: PropTypes.string,
|
|
};
|