From fcc131d4ee13227f5c9388e32a64a8a53808677a Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Wed, 15 Oct 2025 23:26:20 +0700 Subject: [PATCH] :construction: (in plan to change the provision structure) --- features/auth/ui/components/provision/main.tsx | 18 ++++++++++++++++++ .../auth/ui/components/provision/step1.tsx | 7 +++++++ .../auth/ui/components/provision/step2.tsx | 7 +++++++ 3 files changed, 32 insertions(+) create mode 100644 features/auth/ui/components/provision/main.tsx create mode 100644 features/auth/ui/components/provision/step1.tsx create mode 100644 features/auth/ui/components/provision/step2.tsx diff --git a/features/auth/ui/components/provision/main.tsx b/features/auth/ui/components/provision/main.tsx new file mode 100644 index 0000000..cbd2541 --- /dev/null +++ b/features/auth/ui/components/provision/main.tsx @@ -0,0 +1,18 @@ +import React, { JSX, useState } from "react"; +import Step1ProvisionRegister from "./step1"; + +export type RegisterInputs = { + fullname: string; + email: string; + password: string; + confirmPassword: string; +}; + +const ProvisionRegister = () => { + const [currentComponent, setCurrentComponent] = useState( + + ); + return
ProvisionRegister
; +}; + +export default ProvisionRegister; diff --git a/features/auth/ui/components/provision/step1.tsx b/features/auth/ui/components/provision/step1.tsx new file mode 100644 index 0000000..5d9f6ef --- /dev/null +++ b/features/auth/ui/components/provision/step1.tsx @@ -0,0 +1,7 @@ +import React from "react"; + +const Step1ProvisionRegister = () => { + return
Step1ProvisionRegister
; +}; + +export default Step1ProvisionRegister; diff --git a/features/auth/ui/components/provision/step2.tsx b/features/auth/ui/components/provision/step2.tsx new file mode 100644 index 0000000..c7eba02 --- /dev/null +++ b/features/auth/ui/components/provision/step2.tsx @@ -0,0 +1,7 @@ +import React from "react"; + +const Step2ProvisionRegister = () => { + return
Step2ProvisionRegister
; +}; + +export default Step2ProvisionRegister;