mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-07 22:39:24 +00:00
6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
import { createComponent as internalCreate, ComponentOptions } from '../component';
|
|
|
|
export function createComponent(options: ComponentOptions) {
|
|
return internalCreate(options);
|
|
}
|