diff --git a/packages/react-app/src/components/AmountIn.js b/packages/react-app/src/components/AmountIn.js
index da8d4bf..9de20ba 100644
--- a/packages/react-app/src/components/AmountIn.js
+++ b/packages/react-app/src/components/AmountIn.js
@@ -19,49 +19,48 @@ const AmountIn = () => {
return(
-
typeof onChange === "function" && onChange(e.target.value)}
- className={styles.amountInput}
+
typeof onChange === "function" && onChange(e.target.value)}
+ className={styles.amountInput}
+ />
+
+
setShowList(!showList)}>
+
+
+ {showList && (
+
+ {Object.entries(currencies).map(([token, tokenName], index) => (
+ - {
+ if (typeof onSelect === "function") onSelect(token);
+ setActiveCurrency(tokenName);
+ setShowList(false);
+ }}
+ >
+ {tokenName}
+
+ ))}
+
+ )}
+
)
}