reaselct

Select Component for React

Usage no npm install needed!

<script type="module">
  import reaselct from 'https://cdn.skypack.dev/reaselct';
</script>

README

reaselct

Select Component for React

          GitHub stars  

🚀 Quick Links

🪄 Features

  • Single Select
  • Multi Select
  • Filtering with Fuzzy Search
  • Async Support
  • Groups Support
  • Light and Dark Theme

📦 Usage

Install the package via NPM:

npm i reaselct --save

then use it like:

import React, { FC, useState } from 'react';
import { Select, SelectOption } from 'reaselct';

const MyComponent: FC = () => {
  const [value, setValue] = useState<string | null>(null);
 
 return (
    <Select
      value={value}
      onChange={setValue}
    >
      <SelectOption value="facebook">facebook</SelectOption>
      <SelectOption value="twitter">twitter</SelectOption>
      <SelectOption value="twitch">twitch</SelectOption>
    </Select>
  );
};

🔭 Development

If you want to run reaselct locally, its super easy!

  • Clone the repo
  • yarn install
  • yarn start
  • Browser opens to Storybook page

❤️ Contributors

Thanks to all our contributors!