Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Last active March 2, 2026 18:48
Show Gist options
  • Select an option

  • Save codigoconjuan/96edb9f4b4aaa20968eedf7e506e046c to your computer and use it in GitHub Desktop.

Select an option

Save codigoconjuan/96edb9f4b4aaa20968eedf7e506e046c to your computer and use it in GitHub Desktop.
Asistentes Confirmados al Meeti
<div className="mx-auto max-w-2xl mt-10">
{attendees.length ? (
<ul role="list" className="divide-y divide-gray-100 dark:divide-white/5 mt-10 shadow-lg p-10">
{attendees.map(({user}) => (
<li key={user.id}>
<p className="font-bold text-lg">{user.name}</p>
<p className="text-gray-600 text-sm">{user.email}</p>
</li>
))}
</ul>
) : <p className="text-center mt-10 text-lg">No hay asistentes confirmados</p>}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment