bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/toast/inject-notify/component.jsx
2022-02-15 17:57:50 +00: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;