2024-06-10 15:16:25 +05:30

10 lines
295 B
TypeScript

import React from "react";
import type { PageProps } from "../../types/page";
import TwoFactorRecoverPage from "../two-factor/recover";
const Page: React.FC<PageProps> = ({ appContext }) => (
<TwoFactorRecoverPage appContext={appContext} twoFactorType="passkey" />
);
export default Page;