'use client' import { useActionState } from 'react' import { login } from '@/app/actions/auth' export default function LoginPage() { const [state, formAction, isPending] = useActionState(login, null) return (

Kozmos Admin

Yönetim paneline giriş yapın

{state?.error && (
{state.error}
)}
) }