Last active
March 2, 2026 18:48
-
-
Save codigoconjuan/96edb9f4b4aaa20968eedf7e506e046c to your computer and use it in GitHub Desktop.
Asistentes Confirmados al Meeti
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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