I used following node module, no luck
import Bookmark from 'react-bookmark';
<Bookmark className="coolClass" href="/cool/path" title="My Cool Website" />
And I added following code also, in react functional component.
function btnClick(){
document.dispatchEvent(new KeyboardEvent('keydown', {'key': 'd', 'ctrlKey': true}));
}
My requirement is, on button click it should bookmark in the browser bookmarks list. Thank you.