Blog/Components/_Shared/StackStep.razor 340 B · 16 lines · raw · history

1 @* One line of a worked stack example: the stack on the left, the program left to run on the right. *@
2
3 <div class="stack-step">
4 <span>@Stack</span>
5 <span>@Program</span>
6 </div>
7
8 @code {
9 [Parameter]
10 [EditorRequired]
11 public string Stack { get; set; } = null!;
12
13 [Parameter]
14 public string? Program { get; set; }
15
16 }