turkmen-tv-front/app/(main)/auth/recovery/page.tsx

12 lines
232 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import RecoveryForm from "@/components/auth/RecoveryForm";
const Recovery = () => {
return (
<div className="login h-full flex items-center justify-center">
<RecoveryForm />
</div>
);
};
export default Recovery;