office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
12 lines (11 loc) • 360 B
TypeScript
import * as React from 'react';
export interface ITextFieldControlledExampleState {
value1: string;
value2: string;
}
export declare class TextFieldControlledExample extends React.Component<{}, ITextFieldControlledExampleState> {
state: ITextFieldControlledExampleState;
render(): JSX.Element;
private _onChange1;
private _onChange2;
}