Web / React native Interview questions
What are Props in React-native?
Props is short for "properties". Props let you customize React components. For example, here you pass each <Cat> a different name for Cat to render:
import React from 'react'; import { Text, View } from 'react-native'; const Cat = (props) => { return ( <View> <Text>Hello, I am {props.name}!</Text> </View> ); } const Cafe = () => { return ( <View> <Cat name="Maru" /> <Cat name="Jellylorum" /> <Cat name="Spot" /> </View> ); }
More Related questions...