2
I made some changes to the file index.android.js and saved, when running command React-Native run-android, the app remains the same!! The code is like this:
var React = require('react');
var Text = require('react-native').Text;
var AppRegistry = require('react-native').AppRegistry;
const App = function(){
return (
<Text>Meu primeiro app</Text>
);
};
AppRegistry.registerComponent('app1', function(){ return App });
But there’s that same welcome message to Reset!!
I’m just curious, why doesn’t Voce use ES6+? Anyway, you can write as generated the project?
– nbkhope