import { CompanyChip } from '@/companies/components/CompanyChip'; import { useRecoilScopedState } from '@/recoil-scope/hooks/useRecoilScopedState'; import { RelationPickerHotkeyScope } from '@/relation-picker/types/RelationPickerHotkeyScope'; import { EditableCell } from '@/ui/components/editable-cell/EditableCell'; import { isCreateModeScopedState } from '@/ui/components/editable-cell/states/isCreateModeScopedState'; import { getLogoUrlFromDomainName } from '@/utils/utils'; import { Company, Person } from '~/generated/graphql'; import { PeopleCompanyCreateCell } from './PeopleCompanyCreateCell'; import { PeopleCompanyPicker } from './PeopleCompanyPicker'; export type PeopleWithCompany = Pick & { company?: Pick | null; }; export type OwnProps = { people: Pick & { company?: Pick | null; }; }; export function PeopleCompanyCell({ people }: OwnProps) { const [isCreating] = useRecoilScopedState(isCreateModeScopedState); return ( ) : ( ) } nonEditModeContent={ } /> ); }