Adding the following prop does not seem to work
text={{placeholder: "Select product"}}
<DropdownTreeSelect
data={data}
texts={{placeholder: 'Some other text'}}
onChange={onChange}
className="bootstrap-demo"
/>
Placeholder text still shoews default "Choose ..."
The prop name is placeholderText
try:
<DropdownTreeSelect
data={data}
placeholderText={'Some other text'}
onChange={onChange}
className="bootstrap-demo"
/>