easy-dropdown-react
v1.0.34
Published
Make Easy Dropdown With React
Downloads
27
Readme
easy-dropdown-react
Installation
use "npm install easy-dropdown-react"
Import
const Dropdown = require("veizh-plugin-dropdown")
Description
Make Easy Dropdown With React using component
CreateDropdown
/**** Start by importing the module ****/
const Dropdown = require("veizh-plugin-dropdown")
/**** Define a useState hook ****/
let [selectState,setSelectState]=useState('Select a State')
/**** Create an array of strings ****/
currentStatesArray = ["South Carolina","South Dakota","Tennessee"]
return (<Dropdown initial={selectState} arrayOptions={currentStatesArray} mutateur={setSelectState} />)
/**** Use inspector to modify the style with css ****/