A
Anonymous
Quizzes - Copy this React, Tailwind Component to your project
Create me a table to display this: <th>Quiz Title</th> <th>Time Limit</th> <th>Created At</th> <th>Updated At</th> <th>Actions</th> </tr> </thead> <tbody> {quizzes.map((quiz) => ( <tr key={quiz.quizId}> <td>{quiz.quizTitle}</td> <td>{quiz.timeLimit}</td> <td>{new Date(quiz.createdAt).toLocaleString()}</td> <td>{new Date(quiz.updatedAt).toLocaleString()}</td> <td> <button className="bg blue 500 hover:bg blue 700 text white font bold py 2 px 4 rounded"> Edit </button> <button className="bg red 500 hover:bg red 700 text white font bold py 2 px 4 rounded"> Delete </button> </td>
Prompt
