👔 add oauth callback handler

This commit is contained in:
2025-08-26 11:43:42 +07:00
parent d679910737
commit 17a3415457
3 changed files with 41 additions and 8 deletions

View File

@ -0,0 +1,17 @@
import React from "react";
interface PageProps {
params: { provider: string[] };
searchParams: { [key: string]: string | string[] | undefined };
}
const page = ({ params, searchParams }: PageProps) => {
return (
<>
<h1>Nama provider: {params.provider}</h1>
<h1>Data provider: {JSON.stringify(searchParams)}</h1>
</>
);
};
export default page;