interface AppCustomAttributesProps {
  onChange: (value: Record<string, string>) => void;
}

// Do not remove this component. It's for ejecting.
// Some customers need to add custom attributes to a form in dev onboarding plugin, so they can just eject this component and add those attributes there
export function AppCustomAttributes(_props: AppCustomAttributesProps) {
  return null;
}
