bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio-modal/container.jsx

25 lines
524 B
React
Raw Normal View History

2017-01-11 07:14:23 +08:00
import React, { Component, PropTypes } from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import Audio from './component';
import { joinListenOnly } from '/imports/api/phone';
export default class AudioModalContainer extends Component {
constructor(props) {
super(props);
}
render() {
let handleJoinListenOnly = () => {
return joinListenOnly();
};
return (
<Audio
handleJoinListenOnly={handleJoinListenOnly}
/>
);
}
}