@rist/preset-react
Version:
前端react模板生成器
9 lines (7 loc) • 347 B
text/typescript
import {AbstractBootstrapComponentGen} from "../../framework/abstract/abstract.bootstrap.component.gen";
import {IComponent} from "../../framework/interfaces/IComponent";
export class BootstrapComponentGen extends AbstractBootstrapComponentGen{
public load(params: IComponent): void {
this.action.handle(params).then(r => {})
}
}