bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/toast/inject-notify/component.jsx
2017-10-20 17:01:07 -02:00

8 lines
219 B
JavaScript

import React from 'react';
import { notify } from '/imports/ui/services/notification';
const injectNotify = ComponentToWrap =>
props => (<ComponentToWrap {...props} notify={notify} />);
export default injectNotify;