Module exports problem when importing the library and using it with expo run web.
TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
Change module.exports = NativeModules.ReactMds; in src/RNMds.js to export default NativeModules.ReactMds;
Module exports problem when importing the library and using it with
expo run web.TypeError: Cannot assign to read only property 'exports' of object '#<Object>'Change
module.exports = NativeModules.ReactMds;insrc/RNMds.jstoexport default NativeModules.ReactMds;