UNPKG

react-virtualized-sticky-tree

Version:

A React component for efficiently rendering tree like structures with support for position: sticky

9 lines (8 loc) 177 B
import React from 'react'; export interface CityTreeNode { id: number; name: string; depth: number; } declare const CitiesList: React.FC; export default CitiesList;