JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app>
<button ng-init="hasBookmark = false" ng-click="hasBookmark = !hasBookmark">
<span ng-hide="hasBookmark">Add Bookmark</span>
<span ng-show="hasBookmark">Remove Bookmark</span>
</button>
<p ng-show="hasBookmark">
Bookmarked
</p>
</div>