UNPKG

@athosws/react-components

Version:

This is a set of useful ReactJS components developed by Athos.\n Email:ladiesman217.as@gmail.com

9 lines (8 loc) 171 B
export interface TreeType { id: string; name: string; icon?: React.ReactNode; component?: React.ReactNode; sub?: TreeType[]; onClick?: (id: string) => void; }