UNPKG

@feexpay/react-sdk

Version:

SDK React officiel pour intégrer les paiements FeexPay dans vos applications React

8 lines (7 loc) 244 B
import { Country } from '../types/index'; interface CountrySelectorProps { selectedCountry: Country; onChange: (country: Country) => void; } declare const CountrySelector: React.FC<CountrySelectorProps>; export default CountrySelector;