Select a currency from a drop-down list of countries with auto-fill.
On command line:
(npm | yarn) react-select-currency
import React from 'react';
import SelectCurrency from '../src'
const onSelectedCurrency = currencyAbbrev => {
debug(`Selected ${currencyAbbrev}`)
}
function Demo() {
return (
<div>
<SelectCurrency value={'USD'} onCurrencySelected={onSelectedCurrency} />
</div>
)
}
Try the Demo
This component makes use of the following components, with thanks and acknowledgement to the authors and contributors:
Lawrence Siden
Ann Arbor, MI