Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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