* preparePageMetadata: improve logic for title * add missing pages: oauth2 / platform * auth/error: add to app router and extract to /modules
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import PageWrapper from "@components/PageWrapper";
|
|
|
|
import Authorize from "~/auth/platform/authorize-view";
|
|
|
|
const Page = () => <Authorize />;
|
|
Page.PageWrapper = PageWrapper;
|
|
export default Page;
|