4f505d7122
* [plugin-sdk-ui-commands] - implemented chat ui command for plugin * [plugin-sdk-ui-commands] - update SDK * plugin-sdk-ui-commands
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import * as React from 'react';
|
|
import PluginChatUiCommandsHandler from './chat/handler';
|
|
|
|
const PluginUiCommandsHandler = () => (
|
|
<>
|
|
<PluginChatUiCommandsHandler />
|
|
</>
|
|
);
|
|
|
|
export default PluginUiCommandsHandler;
|