2017-01-26 03:52:17 +08:00
|
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
2017-10-11 20:05:57 +08:00
|
|
|
import Service from '/imports/ui/components/audio/service';
|
2017-03-27 23:45:24 +08:00
|
|
|
import React, { Component } from 'react';
|
2017-01-26 03:52:17 +08:00
|
|
|
import AudioNotification from './component';
|
|
|
|
|
2017-01-30 23:42:58 +08:00
|
|
|
|
|
|
|
class AudioNotificationContainer extends Component {
|
2017-01-26 03:52:17 +08:00
|
|
|
render() {
|
2017-03-25 00:38:49 +08:00
|
|
|
return (
|
2017-01-26 03:52:17 +08:00
|
|
|
<AudioNotification
|
2017-10-11 20:05:57 +08:00
|
|
|
{...this.props}
|
2017-01-26 03:52:17 +08:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-01-30 23:42:58 +08:00
|
|
|
|
2017-10-11 20:05:57 +08:00
|
|
|
export default createContainer(() => {
|
|
|
|
return {
|
|
|
|
error: Service.error(),
|
|
|
|
};
|
|
|
|
}, AudioNotificationContainer);
|