Files
pangolin/src/app/auth/login/device/success/layout.tsx
2026-04-22 16:09:16 -07:00

14 lines
244 B
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Device Authorized"
};
export default function DeviceAuthSuccessLayout({
children
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}