Files
calendar/apps/web/pages/auth/oauth2/authorize.tsx
T
Benny JooandGitHub 26be88fc56 chore: App-router-migration /auth/error, /auth/platform, /auth/oauth2 (#16445)
* preparePageMetadata: improve logic for title

* add missing pages: oauth2 / platform

* auth/error: add to app router and extract to /modules
2024-09-04 13:15:19 +00:00

8 lines
194 B
TypeScript

import PageWrapper from "@components/PageWrapper";
import Authorize from "~/auth/oauth2/authorize-view";
const Page = () => <Authorize />;
Page.PageWrapper = PageWrapper;
export default Page;