diff --git a/src/utils/hooks/useFunnel.ts b/src/utils/hooks/useFunnel.ts index 399da5b3..cf3675c8 100644 --- a/src/utils/hooks/useFunnel.ts +++ b/src/utils/hooks/useFunnel.ts @@ -9,6 +9,11 @@ export interface FunnelProps { children: ReactElement[]; } +/** +* 단계별 입력 폼을 진행할 시 사용 권장 +* @param { string } defaultStep 시작할 초기 단계 +* @returns { Funnel, Step, setStep, currentStep } 단계별 입력 폼을 관리하는데 사용하는 유틸리티 +*/ export const useFunnel = (defaultStep: string) => { const [step, setStep] = useState(defaultStep);