@uifabric/experiments
Version:
Experimental React components for building experiences for Microsoft 365.
7 lines (6 loc) • 300 B
TypeScript
import * as React from 'react';
import { IObjectWithKey } from 'office-ui-fabric-react/lib/Selection';
import { IStaticListProps } from './StaticList.types';
export declare class StaticList<TItem extends IObjectWithKey> extends React.Component<IStaticListProps<TItem>> {
render(): JSX.Element;
}