@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
16 lines (15 loc) • 428 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.attachPropertiesToComponent = attachPropertiesToComponent;
function attachPropertiesToComponent(component, properties) {
const ret = component;
for (const key in properties) {
if (properties.hasOwnProperty(key)) {
ret[key] = properties[key];
}
}
return ret;
}
//# sourceMappingURL=attach-properties-to-component.js.map
;