aboutsummaryrefslogtreecommitdiffstats
path: root/components/auth/logout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/auth/logout.tsx')
-rw-r--r--components/auth/logout.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/components/auth/logout.tsx b/components/auth/logout.tsx
deleted file mode 100644
index 87391c84..00000000
--- a/components/auth/logout.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-"use client";
-import { signOut } from "next-auth/react";
-
-export const LogoutButton = () => {
- return (
- <button className="btn btn-ghost normal-case" onClick={() => signOut({
- callbackUrl: "/",
- })}>
- Sign Out
- </button>
- );
-};