import React from 'react'; import type { CurrencyCode } from '../types'; import { currencies } from '../utils/currencies'; interface Props { value: CurrencyCode; onChange: (currency: CurrencyCode) => void; } export function CurrencySelect({ value, onChange }: Props) { return ( ); }