22 lines
319 B
TypeScript
22 lines
319 B
TypeScript
'use client'
|
|
|
|
import { logout } from '@/actions/logout'
|
|
|
|
interface LogoutButtonProps {
|
|
children?: React.ReactNode
|
|
}
|
|
|
|
const LogoutButton = ({ children }: LogoutButtonProps) => {
|
|
const onClick = () => logout()
|
|
|
|
return (
|
|
<span onClick={onClick}>
|
|
{children}
|
|
</span>
|
|
)
|
|
}
|
|
|
|
export default LogoutButton
|
|
|
|
|