17 lines
350 B
TypeScript
17 lines
350 B
TypeScript
import EmployerValidation from "./EmployerValidation";
|
|
|
|
const StartValidation = () => {
|
|
|
|
return (
|
|
<>
|
|
<div className="my-10 bg-white w-full rounded-2xl border-2 border-black">
|
|
<div className="w-full p-5 sm:p-10 lg:p-20">
|
|
<EmployerValidation />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default StartValidation;
|