create a handler to forward callback requests from the OAuth provider to the main backend system.
9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import OauthCallbackHandler from "@/features/oauth-callback/pages/callbackHandler";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return <OauthCallbackHandler />;
|
|
};
|
|
|
|
export default page;
|