UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

11 lines (10 loc) 265 B
import React from 'react'; interface TreeItemProps { label?: string; value?: any; children?: any; passedKey: string; onTreeItemClick: (key: any, currentValue: any) => void; } declare const TreeItem: React.FC<TreeItemProps>; export { TreeItem };