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>}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2c45f-4008b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2c45f-4008b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?