mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-03 07:47:18 +00:00
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import * as React from 'react';
|
|
|
|
interface Props {
|
|
name: string;
|
|
}
|
|
|
|
export default function SubModule({ name }: Props) {
|
|
return <div>hello, {name}</div>;
|
|
}
|