private handleClick = event => {
const params = new URLSearchParams(window.location.search);
let Useridval = params.get('ID');
console.log(event.currentTarget.id);
this.setState({ count: this.state.count + 1 })
};
<button
//onSelect={currentId}
onClick={this.handleClick}>like</button>