30 lines
521 B
Plaintext
30 lines
521 B
Plaintext
@page "/"
|
|
@using Connected.Models;
|
|
|
|
|
|
<h1 style="text-align:center;">Component Sandbox</h1>
|
|
|
|
<FormWizard Id="Wizard1">
|
|
<FormWizardStep Name="Step1">
|
|
Step1
|
|
</FormWizardStep>
|
|
<FormWizardStep Name="Step2">
|
|
Step2
|
|
</FormWizardStep>
|
|
<FormWizardStep Name="Step3">
|
|
Step3
|
|
</FormWizardStep>
|
|
<FormWizardStep Name="Step4">
|
|
Step4
|
|
</FormWizardStep>
|
|
</FormWizard>
|
|
|
|
|
|
<TextInput @bind-Value="@value"></TextInput>
|
|
|
|
@value
|
|
|
|
|
|
@code {
|
|
public string value = string.Empty;
|
|
} |