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

11 lines
355 B
React
Raw Normal View History

import React from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import ClosedCaptionsService from './service';
import ClosedCaptions from './component';
const ClosedCaptionsContainer = props => (
<ClosedCaptions {...props} />
);
2017-06-03 03:25:02 +08:00
export default createContainer(() => ClosedCaptionsService.getCCData(), ClosedCaptionsContainer);