Module for generating a component select with a options list from an array.
npm install @cecigiu2b/dropdown-menu-reactnpm i @cecigiu2b/dropdown-menu-react
import { DropdownMenu } from '@cecigiu2b/dropdown-menu'
import { useState } from 'React'
const departements = [
"Sales",
"Marketing",
"Engineering",
"Human Resources",
"Legal",
];
const states = [
{
name: "Alabama",
abbreviation: "AL",
},
{
name: "American Samoa",
abbreviation: "AS",
},
{
name: "Arizona",
abbreviation: "AZ",
},
{
name: "Arkansas",
abbreviation: "AR",
},
]
const [valueSelect, setValueSelect] = useState(null)
const Form = () => {
return (
);
};
export default Form;
``