React Steps Wizard
Installation Steps:
1. download and install nodeJS, if you don't have it already.
2. open a terminal and run: npm i steps-wizard (in your project directory).
A usage example of the wizard:
CodeSandbox usage example
``
import { useStepsWizard, StepsWizard, Step } from "steps-wizard";
type SomeCompProps = {
label: string;
nextStepName?: string;
loadAsync?: boolean
};
const SomeComp = ({ label, nextStepName, loadAsync = false}: SomeCompProps) => {
return (
<>
{ loadAsync ? :
}
``