我不知道'<'Props'>'。发现要使用道具,我发现要使用其他道具 为什么道具要使用“ type”和'<'Props'>'?什么意思? 请回答我的问题
type Props = {};
export default class App extends Component<Props> {
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>Welcome to React Native!</Text>
<Text style={styles.instructions}>To get started, edit App.js</Text>
<Text style={styles.instructions}>{instructions}</Text>
</View>
);
}
}
答案 0 :(得分:1)
答案 1 :(得分:0)
您可以先删除type Props = {};
,然后再在'props'
内删除Component<Props>
,然后开始编码