Item in Ali"s antd-mobile List component has an extra attribute, which can only be put in text, but my text requires a link, as shown in the following figure, how to achieve it?
{
this.props.list.map((item, index) => {
return (
<Item key={index}}
extra=""
align="top"
thumb={item.thumb}
multipleLine
platform="android"
onClick={() => { }}>
{item.title} <Brief></Brief>
</Item>
)
})
}
</List>
);
}
}