2023-12-16 01:04:52 +08:00
|
|
|
import * as React from 'react';
|
|
|
|
import PluginChatUiCommandsHandler from './chat/handler';
|
2024-06-18 22:06:22 +08:00
|
|
|
import PluginSidekickOptionsContainerUiCommandsHandler from './sidekick-options-container/handler';
|
2023-12-16 01:04:52 +08:00
|
|
|
|
|
|
|
const PluginUiCommandsHandler = () => (
|
|
|
|
<>
|
|
|
|
<PluginChatUiCommandsHandler />
|
2024-06-18 22:06:22 +08:00
|
|
|
<PluginSidekickOptionsContainerUiCommandsHandler />
|
2023-12-16 01:04:52 +08:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default PluginUiCommandsHandler;
|