UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

14 lines (13 loc) 392 B
/// <reference types="react" /> import * as React from 'react'; /** * Interface for ChoiceGroupLabelExample state. */ export interface IChoiceGroupLabelExampleState { imageKey: string; } export declare class ChoiceGroupLabelExample extends React.Component<{}, IChoiceGroupLabelExampleState> { constructor(props: {}); render(): JSX.Element; private _onChange; }