2024-08-20 21:42:05 +08:00
|
|
|
import React from 'react';
|
2024-01-17 01:02:12 +08:00
|
|
|
|
|
|
|
import ChatMessageDomElementManipulationHookManager from './chat/message/hook-manager';
|
2024-08-01 01:44:55 +08:00
|
|
|
import UserCameraDomElementManipulationHookManager from './user-camera/hook-manager';
|
2024-01-17 01:02:12 +08:00
|
|
|
|
|
|
|
const PluginDomElementManipulationManager: React.FC = () => {
|
|
|
|
return (
|
|
|
|
<>
|
2024-08-20 21:42:05 +08:00
|
|
|
<ChatMessageDomElementManipulationHookManager />
|
|
|
|
<UserCameraDomElementManipulationHookManager />
|
2024-01-17 01:02:12 +08:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default PluginDomElementManipulationManager;
|