Files
calendar/apps/web/pages/auth/logout.tsx
T
Benny JooandGitHub d059b1399b chore: App router migration - /auth/forgot-password/*, /auth/login, /auth/logout (#16467)
* migrate auth/forgot-password/*, auth/login, auth/logout

* revert

* fix forgot password

* fix folder structure

* fix logout

* fix middleware

* remove TODO log

* refactor logout
2024-09-03 18:53:16 +09:00

11 lines
340 B
TypeScript

import PageWrapper from "@components/PageWrapper";
import type { PageProps } from "~/auth/logout-view";
import Logout from "~/auth/logout-view";
const Page = (props: PageProps) => <Logout {...props} />;
Page.PageWrapper = PageWrapper;
export default Page;
export { getServerSideProps } from "@server/lib/auth/logout/getServerSideProps";