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

13 lines
405 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 Select from './component';
const Container = (props) => <Select {...props} />;
export default withTracker(() => ({
enabled: Service.isEnabled(),
locale: Service.getSpeechLocale(),
voices: Service.getSpeechVoices(),
}))(Container);