Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

injectContextAsProp.js 249B

12345678
  1. import mapContextToProps from './mapContextToProps';
  2. export default (function (Context, prop, Component) {
  3. return mapContextToProps(Context, function (context) {
  4. var _ref;
  5. return _ref = {}, _ref[prop] = context, _ref;
  6. }, Component);
  7. });