Does React Native use require or import?
require
import
All I can find is an old tutorial using require(), but when I run react-native
require()
react-native
The main difference is, that import is ECMAScript 6 syntax and require is ECMAScript 5. Both are interchangeable, but import has a nice syntax for renaming: export { MY_CONST as THE_CONST, myFunc as theFunc };.
export { MY_CONST as THE_CONST, myFunc as theFunc };