import React from 'react';

/** provides the full, qualified name of the current field name - including nested fields, path/dot delimited */
export const FieldNameContext = React.createContext<string | undefined>(
  undefined
);
