Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. });