Does React Native use require or import?
Yes the latest React Native tutorials and examples use the new import syntax. https://facebook.github.io/react-native/docs/tutorial.html In terms of the differences between CommonJS (require) and ES6 modules (import), there are some good answers here: Using Node.js require vs. ES6 import/export I think most people prefer the new ES6 syntax. However no JS engines implement ES6 modules currently, … Read more