office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
16 lines (15 loc) • 453 B
TypeScript
import * as React from 'react';
import { IGridCellProps } from './GridCell.Props';
export declare class GridCell<T, P extends IGridCellProps<T>> extends React.Component<P, {}> {
static defaultProps: {
cellShape: string;
disabled: boolean;
id: string;
};
private _id;
render(): JSX.Element;
private _onClick();
private _onMouseEnter();
private _onMouseLeave();
private _onFocus();
}