2017-09-26 07:45:44 +08:00
|
|
|
import React from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2017-09-26 07:45:44 +08:00
|
|
|
import ClosedCaptionsService from './service';
|
2016-07-23 08:12:31 +08:00
|
|
|
import ClosedCaptions from './component';
|
|
|
|
|
2017-09-26 07:45:44 +08:00
|
|
|
const ClosedCaptionsContainer = props => (
|
|
|
|
<ClosedCaptions {...props} />
|
2018-01-08 12:44:42 +08:00
|
|
|
);
|
2016-07-23 08:12:31 +08:00
|
|
|
|
2018-01-08 12:44:42 +08:00
|
|
|
export default withTracker(() => ClosedCaptionsService.getCCData())(ClosedCaptionsContainer);
|