forgot-password.js 324 Bytes
import React from "react";
import ForgotPassword from "../components/common-components/ForgotPassword";
import Layout from "../components/layout/Layout";

const ForgotPasswordPage = () => {
  return (
    <div>
      <Layout>
        <ForgotPassword />
      </Layout>
    </div>
  );
};

export default ForgotPasswordPage;