1

From official RN docs;

Sometimes an app needs access to a platform API that React Native 
doesn't have a corresponding module for yet. 

After reading this section I undertsood HOW to create a native module but I am wondering what is the difference between two?

Context:

I was going through this to figure out the difference between react-native init and CRNA and as the folks said, you can't link a native module with CRNA.

That led me to question about the difference b/w native module 
and react-native module and why native modules are not compatible with CRNA?
java_doctor_101
  • 3,287
  • 4
  • 46
  • 78

1 Answers1

0

Create-react-native-app creates an app within EXPO SDK, where you don't have your own project files, so it's not possible to couple other native modules, unless you eject from EXPO SDK.

If you don't know how expo works, take a look at this link What is the difference between Expo and React Native?

Bruno Mazzardo
  • 1,586
  • 1
  • 15
  • 27