Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 890 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 890 Bytes

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 ){},
*/
});