This is my html file
<button (click)="pay()">Add to Cart</button>
This is my ts file
pay(){
Swal.fire(
`Congratulations!!`,
`<h3>The item has been added to the cart!!<h3>`,
'success');
}
So, when I click on the OK(which in here is success), I want user to redirect to the Cart Page of the site. How do I add a link?