<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
<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
According to the error message,
itemRendereris expected to be a function, not a boolean value. You have set theitemRendererprop totrue, 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.