0.7.0 • Published 5 years ago

@atmc/select v0.7.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

@atmc/select - An alternative to react-select

Install

yarn add @atmc/select or npm install @atmc/select

Examples

All examples in CRA example.

Basic examples

import { Select, SelectOption } from "@atmc/select";
...
const Home = () => {
  const options:SelectOption[] = [
      { value: "s", name: "Small" },
      { value: "m", name: "Medium" },
      { value: "l", name: "Large" },
    ];

  return <Select options={options} onChange={(option: SelectOption) => console.log(option)} />
}
0.7.0

5 years ago

0.6.2

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.3

5 years ago

0.5.2

5 years ago

0.5.0

5 years ago

0.5.1

5 years ago

0.4.1

5 years ago

0.3.0

5 years ago

0.4.0

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago