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

9 lines
221 B
TypeScript

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