@using Blazorise.Extensions @using WatchIt.DTO.Models.Controllers.Genres.Genre @using WatchIt.Website.Components.Subcomponents.Common @inherits Component

Genres

@foreach (GenreResponse genre in _availableGenres) { }
@if (_chosenGenres.IsNullOrEmpty()) { No items } else { @foreach (KeyValuePair genre in _chosenGenres) { }
@(genre.Key.Name)
}