How to add links to the extra property of the List component of react ant desogn mobile?

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>
    );
  }
}
Feb.26,2021

is it okay to write something like this

 extra={<a onclick={}></a>}
Menu