import { FC } from 'react'; import { Text, View } from 'react-native'; interface Props { } const App:FC = () => { return ( <> Hola mundo.... ) } export default App;