This commit is contained in:
Timur Ercan
2023-01-04 15:22:50 +01:00
parent b12ea36237
commit 3f5c166bec

View File

@ -8,8 +8,6 @@ import { SessionProvider } from "next-auth/react";
const DocumentsPage: NextPageWithLayout = () => {
const { data: session } = useSession();
console.log("Session:" + JSON.stringify(session));
return <>This is the documents page</>;
};