dropdown-menu-input-react-1
v1.0.3
Published
A simple dropdown menu input for forms
Downloads
1
Readme
Dropdown Menu
This is a simple react component for a dropdown menu input.
Installation
The package can be installed via [npm]:
npm i dropdown-menu-input-react-1
Configuration
You can use the Dropdown with:
const [dropdownValue, setDropDownValue] = useState("");
const data =[
{id: 1, name: "dataExample1"},
{id: 2, name: "dataExample2"},
{id: 3, name: "dataExample3"},
...
]
<Dropdown
className="exemple-class"
result={(value) => {
setDropDownValue(value);
}}
options={data}
aria-label="dropdown"
/>