This package allows you to set up a dropdown selection list in React. Below, you will find all the options related to the component and how to install it in your project.
Follow these steps to install the package:
npm i @shiftytab/reactselectlist yarn add @shiftytab/reactselectlistOnce you have installed the package, simply import it into your project.
import SelectList from '@shiftytab/reactselectlist';<SelectList
options={[
{
"value": "Test 1"
},
{
"value": "Test 2"
},
{
"value": "Test 3"
}
]}
onChange={e => console.log(e)}
label="State"
placeholder='Select a value'
/>