UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

15 lines (14 loc) 715 B
import * as React from 'react'; import { IGroupedListV2Props } from './GroupedListV2.types'; /** * NOTE: GroupedListV2 is "unstable" and meant for preview use. It passes * the same test suite as GroupedList but it is an entirely new implementation * so it may have bugs and implementation details may change without notice. * * GroupedListV2 is an API-compatible replacement for GroupedList with a new implementation * that addresses issues GroupedList has with virtualizing nested lists under certain * conditions. */ declare const GroupedListV2: React.FunctionComponent<IGroupedListV2Props>; export { GroupedListV2 as GroupedListV2_unstable }; export { IGroupedListV2Props } from './GroupedListV2.types';