bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-modal/container.jsx
2017-03-28 10:02:23 -04:00

25 lines
505 B
JavaScript
Executable File

import React, { Component } from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import Audio from './component';
import { joinListenOnly } from '../service';
export default class AudioModalContainer extends Component {
constructor(props) {
super(props);
}
render() {
let handleJoinListenOnly = () => {
return joinListenOnly();
};
return (
<Audio
handleJoinListenOnly={handleJoinListenOnly}
/>
);
}
}