12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
|
|
import RecoveryForm from "@/components/auth/RecoveryForm";
|
||
|
|
|
||
|
|
const Recovery = () => {
|
||
|
|
return (
|
||
|
|
<div className="login h-full flex items-center justify-center">
|
||
|
|
<RecoveryForm />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Recovery;
|