Complete the logic checking and loading on the OAuth module callback handler.
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
import OauthCallbackHandler from "@/features/oauth-callback/pages/callbackHandler";
|
|
import React from "react";
|
|
|
|
interface PageProps {
|
|
params: { provider: string[] };
|
|
searchParams: { [key: string]: string | string[] | undefined };
|
|
}
|
|
|
|
const page = ({ params, searchParams }: PageProps) => {
|
|
return <OauthCallbackHandler />;
|
|
};
|
|
|
|
export default page;
|