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"; import styles from "../styles";
const AmountIn = () => { const AmountIn = () => {
const [showList, setShowList] = useState(false);
return( return(
<div className={styles.amountContainer}> <div className={styles.amountContainer}>
<input <input
@@ -26,7 +29,7 @@ const AmountIn = () => {
}`} }`}
/> />
</button> </button>
</div> </div>
</div> </div>
) )
} }