UNPKG

reakit

Version:

Toolkit for building accessible rich web apps with React

10 lines (8 loc) 313 B
import { unstable_FormState } from "../FormState"; import { unstable_getIn } from "../utils/getIn"; export function shouldShowMessage<V>( { touched, messages }: Pick<unstable_FormState<V>, "touched" | "messages">, name: any ) { return !!(unstable_getIn(touched, name) && unstable_getIn(messages, name)); }