UNPKG

@raona/components

Version:

React components used at Raona to work with SPFx

8 lines (7 loc) 412 B
import * as React from 'react'; import { IPeoplePickerProps } from '@pnp/spfx-controls-react/lib/PeoplePicker'; import { WrapperComponentProps } from './WrapperComponent'; export interface SPPeoplePickerProps extends WrapperComponentProps, IPeoplePickerProps { onChange(items: any): void; } export declare const SPPeoplePicker: (props: SPPeoplePickerProps) => React.ReactElement<SPPeoplePickerProps>;