bb-plane-fork/web/app/(all)/accounts/forgot-password/layout.tsx

9 lines
223 B
TypeScript

import { Metadata } from "next";
export const metadata: Metadata = {
title: "Forgot Password - Plane",
};
export default function ForgotPasswordLayout({ children }: { children: React.ReactNode }) {
return children;
}