office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
13 lines (12 loc) • 370 B
TypeScript
import * as React from 'react';
/**
* Interface for ChoiceGroupImageExample state.
*/
export interface IChoiceGroupImageExampleState {
selectedKey: string;
}
export declare class ChoiceGroupImageExample extends React.Component<any, IChoiceGroupImageExampleState> {
constructor();
render(): JSX.Element;
private _onImageChoiceGroupChange(ev, option);
}