2025-10-01 00:42:35 -06:00
|
|
|
export default function SearchTable() {
|
|
|
|
|
return (
|
|
|
|
|
<form className="containerForm">
|
2025-10-02 02:05:57 -06:00
|
|
|
<label>Numero de Mesa</label>
|
|
|
|
|
<div className="groupInput">
|
|
|
|
|
<input type="text" placeholder="Coloca el numero de Mesa" />
|
|
|
|
|
<button className="buttonSearch button">Buscar</button>
|
|
|
|
|
</div>
|
2025-10-01 00:42:35 -06:00
|
|
|
</form>
|
|
|
|
|
);
|
|
|
|
|
}
|