Components load, but they are not working, components like select do not even open
@page "/"
@using Radzen
@using Radzen.Blazor
<PageTitle>Home</PageTitle>
<RadzenStack Orientation="Orientation.Vertical" AlignItems="AlignItems.Center" JustifyContent="JustifyContent.Center" Gap="0.5rem" class="rz-p-sm-12">
<RadzenLabel Text="Select Migration" Component="SelectMigration"/>
<RadzenDropDown @bind-Value=@migrationValue Data=@data Placeholder="Select an option" />
</RadzenStack>
@code {
private List<string> data = new List<string> { "Option 1", "Option 2", "Option 3" };
private string? migrationValue;
}