import * as React from 'react'; import useFieldApi from '@data-driven-forms/react-form-renderer/use-field-api'; import useFormApi from '@data-driven-forms/react-form-renderer/use-form-api'; const CustomMapping = (props: any) => { const { customComponent: CustomComponent, ...rest } = useFieldApi(props); const { getState } = useFormApi(); return ; }; export const Custom = React.memo(CustomMapping);