Files
ColdBreeze-chat-web/src/routes/chat/VoiceChat/VoiceManagement.tsx
T
2023-03-24 11:05:51 +08:00

11 lines
179 B
TypeScript

import React from 'react';
type Props = {}
const VoiceManagement = (props: Props) => {
return (
<div>VoiceManagement</div>
);
};
export default VoiceManagement;