Change label in TreeData interface to title, since label is deprecated (#11442)

This commit is contained in:
JribiBelhassen 2018-07-25 03:53:18 +01:00 committed by zombieJ
parent fbf1a35249
commit 36f396f86f

View File

@ -4,7 +4,7 @@ import { AbstractSelectProps } from '../select';
export interface TreeData {
key: string;
value: string;
label: React.ReactNode;
title: React.ReactNode;
children?: TreeData[];
}