mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 05:36:39 +00:00
7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
/// <reference types="react" />
|
|
export interface Props {
|
|
name: string;
|
|
}
|
|
declare const Greeting: ({ name }: Props) => JSX.Element;
|
|
export default Greeting;
|