gpt4 book ai didi

reactjs - 如何在 React 中将组件定义为 Prop 的默认值?

转载 作者:行者123 更新时间:2023-12-05 03:29:22 24 4
gpt4 key购买 nike

我怎样才能在 React 中正确地做这样的事情?


import Bar from './Bar.jsx'

const Foo = ({ icon = <Bar />}) => {
// ...
}

export default Foo

现在正在使用 icon = <Bar />将简单地给出解析错误。

最佳答案

使用大写的 Icon 属性可以将其用作组件:

const Bar = ({}) => {
return <div>Bar</div>;
};

const Foo = ({ Icon = Bar }) => {
return (
<div>
<Icon />
</div>
);
};

Live

关于reactjs - 如何在 React 中将组件定义为 Prop 的默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71018466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com