7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
|
module.exports = function makeImportPatch(packageImportPath) {
|
||
|
return {
|
||
|
pattern: 'import com.facebook.react.ReactActivity;',
|
||
|
patch: '\n' + packageImportPath,
|
||
|
};
|
||
|
};
|