我想显示我传递给参数的文本。
export default function Paragraph(text) { return( <div> {text} </div> ) }
但到目前为止,它还没有呈现文本。我甚至试过这样称呼它
<Paragraph text="Some text"></Paragraph>
umuewwlo1#
Paragraph组件应该接收一个“props”对象参数,“text”键的值应该通过解构props对象来获得。
export default function Paragraph({ text }) { return( <div> {text} </div> ) }
1条答案
按热度按时间umuewwlo1#
Paragraph组件应该接收一个“props”对象参数,“text”键的值应该通过解构props对象来获得。