UNPKG

@wix/design-system

Version:

@wix/design-system

8 lines 398 B
import React from 'react'; import { BulkSelectionContext } from './BulkSelection'; export const BulkSelectionConsumer = ({ consumerCompName = 'BulkSelectionConsumer', providerCompName = 'BulkSelection', children, }) => { return (React.createElement(BulkSelectionContext.Consumer, null, context => { return children(context); })); }; //# sourceMappingURL=BulkSelectionConsumer.js.map