I am using @microsoft/mgt-react": "^2.1.0" and I see "fallbackDetails" in the documentation but no exammple how to use it.
I tried:
return (<td title={uName} >
<Person personQuery={email} showPresence={true} view={PersonViewType.oneline}
**fallbackDetails={fallback } //Here Tslint Error**
personCardInteraction={PersonCardInteraction.hover} />
</td>
);
The complin is:
fallbackDetails: IDynamicPerson; personCardInteraction: PersonCardInteraction.hover; }' is not assignable to type 'IntrinsicAttributes & PersonProps & { children?: ReactNode; }'.
Property 'fallbackDetails' does not exist on type 'IntrinsicAttributes & PersonProps & { children?: ReactNode; }'.ts(2322)
Can anyone provide an example that TypeScript will accept? Or maybe there is a Types.d.ts that I need to get
Thanks in advance