bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/toast/inject-notify/component.jsx

8 lines
219 B
React
Raw Normal View History

2017-10-21 03:01:07 +08:00
import React from 'react';
import { notify } from '/imports/ui/services/notification';
const injectNotify = ComponentToWrap =>
props => (<ComponentToWrap {...props} notify={notify} />);
export default injectNotify;