24 lines
568 B
JavaScript
Executable File
24 lines
568 B
JavaScript
Executable File
import React, { Component, PropTypes } from 'react';
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
import ClosedCaptionsService from './service.js';
|
|
import ClosedCaptions from './component';
|
|
|
|
class ClosedCaptionsContainer extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ClosedCaptions {...this.props}>
|
|
{this.props.children}
|
|
</ClosedCaptions>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default createContainer(() => {
|
|
const data = ClosedCaptionsService.getCCData();
|
|
return data;
|
|
}, ClosedCaptionsContainer);
|