Files
react-native-svg/lib/mergeContext.js
Horcrux 8d01e8eccb refactor shape elements add responder system.
refactor shape elements add responder system.
Just iOS.
2016-05-15 00:40:43 +08:00

12 lines
213 B
JavaScript

import _ from 'lodash';
export default function (props, context) {
if (context.isInGroup) {
props = _.defaults({}, props, context, {
isInGroup: null
});
}
return props;
}