mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
export const Text = ({
|
|
__tag,
|
|
content,
|
|
...props
|
|
}: any) => (<div {...props}>{content}</div>);
|
|
|
|
export const Page = (props: any) => (<div>{props.children}</div>); |