loading
This commit is contained in:
parent
99b7066b83
commit
e39239b9b5
1 changed files with 8 additions and 1 deletions
|
|
@ -72,7 +72,14 @@ const LoanPanel = () => {
|
||||||
loanInterest={loanInterest}
|
loanInterest={loanInterest}
|
||||||
/>
|
/>
|
||||||
</form>
|
</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>
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue