import Box from '@mui/material/Box'; import TextField from '@mui/material/TextField'; import MenuItem from '@mui/material/MenuItem'; const currencies = [ { value: 'USD', label: '$', }, { value: 'EUR', label: '€', }, { value: 'BTC', label: '฿', }, { value: 'JPY', label: '¥', }, ]; export default function SelectTextFields() { return (
{currencies.map((option) => ( {option.label} ))} {currencies.map((option) => ( ))}
{currencies.map((option) => ( {option.label} ))} {currencies.map((option) => ( ))}
{currencies.map((option) => ( {option.label} ))} {currencies.map((option) => ( ))}
); }