How to merge Table components in ant design with ID

how to merge common data according to id using the Table component in Ant Design implemented by React. For example, there is the following data:
(the data is acquired dynamically in the background)


Users:[
    {id:1,name:"",resume:""},
    {id:1,name:"",resume:""},
    {id:2,name:"",resume:""},
    {id:2,name:"",resume:""}
]

how to display the following effect:

clipboard.png

everyone, come and see how this should be realized.

the above merge has been resolved, but if there is a check box, how to merge the check box

Menu