"use client"; import { observer } from "mobx-react"; // components import { ForgotPasswordForm } from "@/components/account/auth-forms/forgot-password"; import { AuthHeader } from "@/components/auth-screens/header"; // helpers import { EAuthModes, EPageTypes } from "@/helpers/authentication.helper"; // layouts import DefaultLayout from "@/layouts/default-layout"; import { AuthenticationWrapper } from "@/lib/wrappers/authentication-wrapper"; const ForgotPasswordPage = observer(() => (
)); export default ForgotPasswordPage;