6 lines
166 B
JavaScript
6 lines
166 B
JavaScript
module.exports = function makeUsingPatch(packageImportPath) {
|
|
return {
|
|
pattern: 'using ReactNative.Modules.Core;',
|
|
patch: '\n' + packageImportPath,
|
|
};
|
|
};
|