UNPKG

sp-react-formfields

Version:

Collection of React controls used for rendering SharePoint fields in custom forms. Support new/edit/display rendering modes.

9 lines (8 loc) 342 B
import * as React from 'react'; import { ITermProps, ITermState } from './interfaces'; export default class Term extends React.Component<ITermProps, ITermState> { constructor(props: ITermProps); componentWillReceiveProps?(nextProps: ITermProps, nextContext: any): void; render(): JSX.Element; private _handleChange; }