This commit is contained in:
counterweight 2025-05-23 23:41:22 +02:00
parent 99b7066b83
commit e39239b9b5
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -72,7 +72,14 @@ const LoanPanel = () => {
loanInterest={loanInterest}
/>
</form>
{hasBeenInteracted ? <p>Someone touched meeee</p> : null}
{hasBeenInteracted ? (
<div className="flex flex-col items-center justify-center">
<div className="w-8 h-8 border-4 border-blue-500 border-t-transparent rounded-full animate-spin"></div>
<p className="font-light">
Calculando los detalles del préstamo...
</p>
</div>
) : null}
</div>
</>
);