const Card = ({text1, text2, text3}) => (
<CardView>
<Text> {text1}</Text>
<Text> {text2} </Text>
<Text> {text3} </Text>
</CardView>
);
这是为我创建的这个对象设置组件的正确方法吗?它适用于一个“变量”,如
const Card = ({ text1 }) => (
<CardView>
<Text> {text1} </Text>
</CardView>
);
但由于某种原因,当我有多个“文本”时,它不起作用。我这样称呼它
<Card text1 = {text1} text2 = {text2} text3 = {text3} />
我做错了什么?谢谢。