7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
|
"use server";
|
||
|
|
||
|
import { signOut } from "@/auth";
|
||
|
|
||
|
export async function logout() {
|
||
|
await signOut();
|
||
|
}
|