2017-09-26 07:45:44 +08:00
|
|
|
import React from 'react';
|
2016-07-23 08:12:31 +08:00
|
|
|
import { createContainer } 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} />
|
|
|
|
);
|
2016-07-23 08:12:31 +08:00
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
export default createContainer(() => ClosedCaptionsService.getCCData(), ClosedCaptionsContainer);
|