import React from 'react';
import {StyleSheet, Text} from 'react-native';
export default function App() {
return(
<Text style={estilos.texto}>Hello World!</Text>
);}
const estilos = StyleSheet.create({
texto: {
marginTop: 20,
fontSize: 36,
}
});