importReactfrom'react';
/** Context to store the API errors from the server for the form. */exportvarServerErrorContext = React.createContext({
errors: {},
getError: function (path) {
returnundefined;
},
setError: function (path, errorMessage) { },
});