import React from "react"
import { Metadata } from "next"
import ForgotPasswordContainer from "./section/ForgotPasswordContainer"

export const metadata: Metadata = {
  title: "Forgot",
}

export default function ForgotPassword() {
  return <ForgotPasswordContainer />
}
