Hellou!我有2个radiobuttons,我想添加一个链接。 我试着这样做:
<RadioButton
value="/searchByArtistAndName"
label="Artist and Name"
style={styles.radioButton}
containerElement={<Link to="/searchByArtistAndName"/>}
/>
但是没有为RadioButton定义containerElement。有什么想法吗?
答案 0 :(得分:2)
您可以在label属性中放置任何react组件,而不仅仅是文本字符串。
<RadioButton
label={<Link to="/your_route" />}
...
/>