React Native Props
App Name : Test
Component Name : Home.js & App.js
Props : share data between two component used props.
----------------------------------------------------- App.js ----------------------------------------
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React, { Component } from 'react'
import { View, Text, Button, } from 'react-native';
import Home from './Component/Home'
const App = () => {
const data="some data"
return(
<View>
< Home data={data}/>
</View>
)
}
export default App;
-------------------------------------------------------------------------------------------
----------------------------------- Home.js ----------------------------------

Comments
Post a Comment