bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/captions/live/container.jsx
Pedro Beschorner Marin 307ab6ea40 feat(captions): add author avatar
Include captions' author avatar at the live feedback to improve identification.
2022-07-20 17:20:50 +00:00

19 lines
435 B
JavaScript

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import Service from '/imports/ui/components/audio/captions/service';
import LiveCaptions from './component';
const Container = (props) => <LiveCaptions {...props} />;
export default withTracker(() => {
const {
transcriptId,
transcript,
} = Service.getAudioCaptionsData();
return {
transcript,
transcriptId,
};
})(Container);