new view and components

This commit is contained in:
2025-09-03 20:41:25 -04:00
parent 685c92a82f
commit 2da630c8a8
29 changed files with 680 additions and 203 deletions
+9 -8
View File
@@ -1,11 +1,12 @@
'use client'
import { useState } from "react";
import Information from "../Information/information";
function SearchUser() {
const [numAccount, setNumAccount] = useState('');
return (
<>
<form>
<form className="containerForm">
<label className='label'>No.Cuenta</label>
<div className='groupInput'>
<input
@@ -28,13 +29,13 @@ function SearchUser() {
</button>
</div>
</form>
<div className='information'>
<label><b>No.Cuenta: </b>id_cuenta</label>
<label><b>Nombre: </b>nombre</label>
<label><b>Carrera: </b>carrera</label>
<label><b>Crédito: </b>credito</label>
</div>
<Information
NoCuenta="idcuanta"
Nombre="juan"
Carrera="carrera"
Credito="credito"
/>
</>
)
}