feat: accounts signup page

This commit is contained in:
httpjamesm 2024-01-13 02:08:08 -05:00
parent 9b723448de
commit 9a6b906c29
No known key found for this signature in database
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,17 @@
import SignupPage from '@ente/accounts/pages/signup';
import { APPS } from '@ente/shared/apps/constants';
import { useRouter } from 'next/router';
import { AppContext } from 'pages/_app';
import { useContext } from 'react';
export default function Sigup() {
const appContext = useContext(AppContext);
const router = useRouter();
return (
<SignupPage
appContext={appContext}
router={router}
appName={APPS.ACCOUNTS}
/>
);
}

View file

@ -46,4 +46,5 @@ export enum ACCOUNTS_PAGES {
ROOT = '/',
PASSKEYS = '/passkeys',
ACCOUNT_HANDOFF = '/account-handoff',
GENERATE = '/generate',
}