Answers for "react-select"

5

react-select

import React, { Component } from 'react'
import Select from 'react-select'

const options = [
  { value: 'chocolate', label: 'Chocolate' },
  { value: 'strawberry', label: 'Strawberry' },
  { value: 'vanilla', label: 'Vanilla' }
]

const MyComponent = () => (
  <Select options={options} />
)
Posted by: Guest on July-31-2020
0

react-select

yarn add react-select
or 
npm i react-select
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language