Props
import React from 'react';
import { View, Text, Button } from 'react-native';
// Child component
const Greeting = (props) => {
return (
<View>
<Text>Hello, {props.name}!</Text>
</View>
);
};
// Parent component
const App = () => {
return (
<View style={styles.container}>
<Greeting name="Alice" />
<Greeting name="Bob" />
<Greeting name="Charlie" />
</View>
);
};Last updated