Dropdown button to use in React.
npm install dropdown-odul68Dropdown button to use in React.
Run the command :
npm i dropdown-odul68
Import in your file :
import { Dropdown } from "dropdown-odul68"
``Javascript
export const data =
[
{
name: 'John',
},
{
name: 'Marc',
},
{
name: 'Fred',
}
]
const [selectedData, setSelectedData] = useState(data[0]);
function selectValue(e) {
setSelectedData(e);
}
`
`Javascript
;
``