React Native Make First Component

 ==============  App Name Test =============

============== Component App.js ===========


/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/

import React from 'react'
import { View, Text, } from 'react-native';
const App = () =>{
return(
<View>
<Text>Hello React Native King </Text>
</View>
)
}


export default App;




Comments

Popular posts from this blog

React Native FlatList

React Native class component