13 lines
400 B
TypeScript
13 lines
400 B
TypeScript
import * as React from 'react';
|
|
import PluginSaveCaptionServerCommandsManager from './caption/save/manager';
|
|
import PluginAddLocaleCaptionServerCommandsManager from './caption/add-locale/manager';
|
|
|
|
const PluginServerCommandsHandler = () => (
|
|
<>
|
|
<PluginSaveCaptionServerCommandsManager />
|
|
<PluginAddLocaleCaptionServerCommandsManager />
|
|
</>
|
|
);
|
|
|
|
export default PluginServerCommandsHandler;
|