I want to separate Wizard or Stepper into separate Blazor components.
Someone that can guide me how to separate the Wizard steps into different components? I struggle to make validation work and the step logic work with parameter or cascading value.
I cannot just follow Wizard Form Integration because I need more steps and my own UI in each step so my file will be too big.
I can only show the wizard right now with sending it from ""parent" to "child" but validation and step logic doesnt work.
Should i looking at Stepper instead of Wizard? or have someone an example?
TelerikWizard @bind-Value="@Value" OnFinish="@OnFinishHandler" >
<WizardSteps>
<PersonalInformationTwo
applicationModel="@applicationModel"
personalInformationForm="@personalInformationForm"/>