Task - CRUD operation
- Complete the logic to update card item that we left earlier
- Reuse the existing that we created earlier to save new card
// Hint
this.http.post<Card>(`${environment.baseUrl}/sports`, card).subscribe(card => console.log(card));
Head over to the network to inspect if the post request is successful. Or you can visit http://localhost:3000/sports.
- Try to delete the card as well.