Search
이 문서는 AI로 번역되었습니다. 부정확한 내용이 있을 경우 영어 버전을 참조하세요
class HelloModel extends FlowModel { render() { return ( <div> <h1>Hello, NocoBase!</h1> <p>This is a simple block rendered by HelloModel.</p> </div> ); } }
BlockModel
CollectionBlockModel
ActionModel
export class PluginHelloClient extends Plugin { async load() { this.engine.registerModels({ HelloModel }); } }
<FlowModelRenderer model={model} />