@using BlazorWASM.Shared

@myCards.Title

@myCards.Discription

@{ foreach(var card in myCards.Cards) { } }
@code { [Parameter] public ServicesCard cards { get; set; } public ServicesCard myCards; protected override void OnParametersSet() { base.OnParametersSet(); myCards = cards; } }