React-Quiz 만들기 [5]
1. 여러 퀴즈를 렌더링 하기위해 각 순서에 따라 id 값을 주었다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 const quizzes = [ { id:1, question: "나는 몇 학년일까요?", answers: [ {text: "1학년", isCorrect: false}, {text: "2학년", isCorrect: false}, {text: "3학년", isCorrect: false}, {text: "4학년", isCorrect: true}, ], }, { id:2, question: "나는 몇 살일까요?", answers: [ {text: "21살", isCorrect:false }, {text: "2..
2021. 12. 31.