1 import { useState } from 'react';
3 const useStep = (initialStep = 0) => {
4 const [step, updateStep] = useState(initialStep);
5 const next = () => updateStep((s) => s + 1);
6 const previous = () => updateStep((s) => s - 1);
7 const goTo = (s: number) => updateStep(s);
17 export default useStep;