12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
|
|
import { logoutAction } from "@/lib/actions";
|
||
|
|
|
||
|
|
export function LogoutButton() {
|
||
|
|
return (
|
||
|
|
<form action={logoutAction}>
|
||
|
|
<button className="button secondary" type="submit">
|
||
|
|
Log Out
|
||
|
|
</button>
|
||
|
|
</form>
|
||
|
|
);
|
||
|
|
}
|