bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/lock-viewers/context/consumer.jsx
2019-05-24 15:09:09 -03:00

12 lines
259 B
JavaScript

import React from 'react';
import lockContext from './context';
const contextConsumer = Component => props => (
<lockContext.Consumer>
{ contexts => <Component {...props} {...contexts} />}
</lockContext.Consumer>
);
export default contextConsumer;