7.6.2.57. ActionServiceProvider
Component that allows to receive contributions from other plugins for the console.action/provider extension type.
Example
const context: ActionContext = { 'a-context-id': { dataFromDynamicPlugin } };
...
<ActionServiceProvider context={context}>
{({ actions, options, loaded }) =>
loaded && (
<ActionMenu actions={actions} options={options} variant={ActionMenuVariant.DROPDOWN} />
)
}
</ActionServiceProvider>
| Parameter Name | Description |
|---|---|
|
| Object with contextId and optional plugin data |