-1
<Select items={items} filterable={false} itemRenderer={true}>
   <Button rightIcon="caret-down" text="Hello" />
</Select> 

I initialized items value and i am trying to implement but I am getting an error

Joe Mayo
  • 7,501
  • 7
  • 41
  • 60

1 Answers1

0

According to the error message, itemRenderer is expected to be a function, not a boolean value. You have set the itemRenderer prop to true, but it needs to be set to a function that returns a rendered item.

For more help, see Blueprint's documentation on Select's itemRenderer.

Dykotomee
  • 728
  • 6
  • 20