🚧 (in plan to change the provision structure)
This commit is contained in:
18
features/auth/ui/components/provision/main.tsx
Normal file
18
features/auth/ui/components/provision/main.tsx
Normal file
@ -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<JSX.Element>(
|
||||||
|
<Step1ProvisionRegister />
|
||||||
|
);
|
||||||
|
return <div>ProvisionRegister</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ProvisionRegister;
|
||||||
7
features/auth/ui/components/provision/step1.tsx
Normal file
7
features/auth/ui/components/provision/step1.tsx
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const Step1ProvisionRegister = () => {
|
||||||
|
return <div>Step1ProvisionRegister</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Step1ProvisionRegister;
|
||||||
7
features/auth/ui/components/provision/step2.tsx
Normal file
7
features/auth/ui/components/provision/step2.tsx
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const Step2ProvisionRegister = () => {
|
||||||
|
return <div>Step2ProvisionRegister</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Step2ProvisionRegister;
|
||||||
Reference in New Issue
Block a user