c6391b3986
* [plugin-sdk-generic-component] - generic component extensible area and ui command layout set * [plugin-generic-component] - update sdk * [plugin-generic-component] - fix lint errors * [plugin-generic-component] - fix problem warned by CI tests
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import * as React from 'react';
|
|
import PluginChatUiCommandsHandler from './chat/handler';
|
|
import PluginLayoutUiCommandsHandler from './layout/handler';
|
|
|
|
const PluginUiCommandsHandler = () => (
|
|
<>
|
|
<PluginLayoutUiCommandsHandler />
|
|
<PluginChatUiCommandsHandler />
|
|
</>
|
|
);
|
|
|
|
export default PluginUiCommandsHandler;
|