Embed Apps in React
Last updated
Last updated
First, install the Lowcoder SDK.
yarn:
npm:
Publish your app/module in OpenFlower.
Set the app/module's access privilege as public.
Add code in your existing app as below.
Properties
appId
string
The app's id is required!
--
baseUrl
string
The api base url of the OpenFlower Instance.
Free playground account - https://prod-us1.openflower.org or Cloud Hosted account - https://flower-us1.bitwebservices.com
onModuleEventTriggered
(eventName: string) => void
(Only for Modules) Triggered when module's custom event is triggered. Works only when the app is a module.
--
onModuleOutputChange
(output: any) => void
(Only for Modules) Triggered when module's outputs change. Works only when the app is a module.
--
Modules are special Apps, which make bidirectional communication between your app and the OpenFlower Module possible. You can send data to Module-Inputs and receive Data back via Module Outputs. Also, you can trigger Methods and listen to Events.
Invoke module methods