Quiz Test - Copy this React, Tailwind Component to your project
Design for me quiztest UI beautiful with data { topic: "JavaScript Fundamentals", level: "Intermediate", totalQuestions: 4, perQuestionScore: 5, questions: [ { question: "What is the output of typeof null", choices: ["object", "null", "undefined", "number"], correctAnswer: "object" }, { question: "Which method removes the last element from an array?", choices: ["pop()", "push()", "shift()", "unshift()"], correctAnswer: "pop()" }, { question: "What does the '===' operator do?", choices: [ "Compares values only", "Compares types only", "Compares both value and type", "None of the above" ], correctAnswer: "Compares both value and type" }, { question: "Which is not a JavaScript data type?", choices: ["string", "boolean", "float", "number"], correctAnswer: "float" } ] };
