Added You're almost done page
This commit is contained in:
@@ -1,9 +1,19 @@
|
||||
import React from "react";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import EmploymentDetails from "./EmploymentDetails";
|
||||
import ReferenceDetails from "./ReferenceDetails";
|
||||
import { Button } from "..";
|
||||
|
||||
const YourAreAlmostThere: React.FC = () => {
|
||||
interface YourAreAlmostThereProps {
|
||||
handleNextStep: any;
|
||||
}
|
||||
|
||||
const YourAreAlmostThere: React.FC = ({ handleNextStep }) => {
|
||||
const navigate = useNavigate();
|
||||
|
||||
const navigation = () => {
|
||||
navigate("");
|
||||
};
|
||||
return (
|
||||
<>
|
||||
<h1 className="font-semibold text-[2.375rem] text-[#5C2684] my-[.5rem]">
|
||||
@@ -16,7 +26,7 @@ const YourAreAlmostThere: React.FC = () => {
|
||||
className="my-8 max-w-[20.3125rem] btn-R bg-[#5A2C82]"
|
||||
text="Continue"
|
||||
type="button"
|
||||
// onClick={handleNextStep}
|
||||
onClick={handleNextStep}
|
||||
/>
|
||||
</form>
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user