bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/captions/speech/container.jsx

21 lines
431 B
React
Raw Normal View History

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import Service from '/imports/ui/components/audio/captions/speech/service';
import Speech from './component';
const Container = (props) => <Speech {...props} />;
export default withTracker(() => {
const {
locale,
connected,
talking,
} = Service.getStatus();
return {
locale,
connected,
talking,
};
})(Container);