Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Counter.razor 314B

123456789101112131415161718
  1. @page "/counter"
  2. <PageTitle>Counter</PageTitle>
  3. <h1>Counter</h1>
  4. <p role="status">Current count: @currentCount</p>
  5. <button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
  6. @code {
  7. private int currentCount = 0;
  8. private void IncrementCount()
  9. {
  10. currentCount++;
  11. }
  12. }