componentes

This commit is contained in:
2025-10-01 00:42:35 -06:00
parent 722c937e53
commit 4792bb68f0
6 changed files with 88 additions and 45 deletions
+12
View File
@@ -0,0 +1,12 @@
export default function SearchTable() {
return (
<form className="containerForm">
{" "}
<label>Numero de Mesa</label>
<div className="groupInput">
<input type="text" placeholder="Coloca el numero de Mesa" />
<button className="buttonSearch button">Buscar</button>
</div>
</form>
);
}