@if (error()) {
error {{ error() }}
} @if (loading()) {

Loading quizzes...

} @else if (quizzes().length === 0) {
quiz

No quizzes yet

Create your first quiz to get started.

Create Quiz
} @else {
@for (quiz of quizzes(); track quiz._id) {

{{ quiz.title }}

{{ quiz.difficulty || 'General' }}
help {{ quiz.totalQuestions }} questions
timer {{ quiz.timer }} min
category {{ quiz.category || 'Uncategorized' }}
@if (quiz.topic) {
{{ quiz.topic }}
}
edit Edit
}
}