0.0.4 • Published 9 years ago

react-auto-complete v0.0.4

Weekly downloads
17
License
ISC
Repository
github
Last release
9 years ago

Install

npm install react-auto-complete

Usage

...
React.create-element do
    AutoComplete
    value: @state.selected-fruit
    options: <[apple banana grapes strawberry pineapple orange mango]> 
        |> map (fruit) -> {label: fruit, value: fruit}
    on-change: (value) ~> @set-state selected-fruit: value
...