fraserxu / react-dropdown

🔽 A dead simple dropdown component for React

Home Page:http://fraserxu.github.io/react-dropdown/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to change the "No options found" message

armin-mimosa opened this issue · comments

Looking to just change the verbiage of the no options menu, i'd still like the dropdown to show just to display a different message if no options are available

const dropdownOptions = [
// { label: "32", value: "32" }
];
const error = ["No option" // type any message you want];

return (
<Dropdown
options={dropdownOptions == [] ? error : dropdownOptions }
/>