Skip to content

Instantly share code, notes, and snippets.

@edd-dev02
Forked from codigoconjuan/app.js
Created April 7, 2025 21:33
Show Gist options
  • Select an option

  • Save edd-dev02/c5e63f50fbd4f4be3243160ee3683755 to your computer and use it in GitHub Desktop.

Select an option

Save edd-dev02/c5e63f50fbd4f4be3243160ee3683755 to your computer and use it in GitHub Desktop.
Gist para Listado de Clientes
` <tr>
<td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200">
<p class="text-sm leading-5 font-medium text-gray-700 text-lg font-bold"> ${nombre} </p>
<p class="text-sm leading-10 text-gray-700"> ${email} </p>
</td>
<td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200 ">
<p class="text-gray-700">${telefono}</p>
</td>
<td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200 leading-5 text-gray-700">
<p class="text-gray-600">${empresa}</p>
</td>
<td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200 text-sm leading-5">
<a href="editar-cliente.html?id=${id}" class="text-teal-600 hover:text-teal-900 mr-5">Editar</a>
<a href="#" data-cliente="${id}" class="text-red-600 hover:text-red-900">Eliminar</a>
</td>
</tr>
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment