Update AmountIn.js

This commit is contained in:
Daniel
2022-11-05 12:56:53 +01:00
parent 9e6079083d
commit fb8fa8fe49

View File

@@ -5,6 +5,9 @@ import { useOnClickOutside } from "../utils"; //helps to close menu bar
import styles from "../styles";
const AmountIn = () => {
const [showList, setShowList] = useState(false);
return(
<div className={styles.amountContainer}>
<input
@@ -26,7 +29,7 @@ const AmountIn = () => {
}`}
/>
</button>
</div>
</div>
</div>
)
}