@using Microsoft.AspNetCore.Identity @if (Context.User.Identity.IsAuthenticated) {
@await Component.InvokeAsync("Basket", User.Identity.Name)
} else {
@await Component.InvokeAsync("Basket")
}