@paylike/react-currency-select
v1.2.0
Published
A ReactJS module for https://github.com/paylike/currencies/
Downloads
21
Keywords
Readme
Paylike currency select
A ReactJS module exporting a select of paylike supported currencies
Usage
Requires ReactJS ^v0.14.2
Pin the dependency to the current version branch to ensure future installs of your application will work. Like so:
"dependencies": {
"@paylike/react-currency-select": "^1.0.1"
}
var ReactDOM = require('react-dom');
var CurrencySelect = require('@paylike/react-currency-select');
ReactDOM.render(CurrencySelect, {
/*
value,
required,
initial, // set a text to display in an initial option
className,
funding, // show only funding currencies
deprecated, // include deprecated currencies
exclude, // Array of currency codes to exclude
filter, // function to filter currencies (( { code, currency, numeric, exponent } ) => Boolean)
onChange: function( currency ){},
*/
});