mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 21:59:28 -05:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
"use client";
|
|
|
|
import { signOut } from "next-auth/react";
|
|
import { useEffect } from "react";
|
|
|
|
export const ClientLogout = () => {
|
|
useEffect(() => {
|
|
signOut();
|
|
});
|
|
return null;
|
|
};
|