'use client' import { useActionState } from 'react' export function Form({ action }) { const [state, formAction] = useActionState(action, null) return (
Action Result: {state}
) }