mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 12:09:17 +00:00
10 lines
295 B
TypeScript
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;
|