UNPKG

envoc-form

Version:

Envoc form components

10 lines (9 loc) 293 B
import React from 'react'; /** Context to store the API errors from the server for the form. */ export var ServerErrorContext = React.createContext({ errors: {}, getError: function (path) { return undefined; }, setError: function (path, errorMessage) { }, });