repository to manage all files for 1_2_oder_3 interaction game for Inf2/2 Interaktionen SoSe23 from Engert, Caliskan and Bachiri
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Question.js 442B

12345678910111213141516
  1. import React from "react";
  2. function Question({questionCount}) {
  3. return(
  4. <div className="HeaderDiv">
  5. <div id="QuestionHeaderDiv">
  6. <h2 id="QuestionHeader">{questionCount ? questionCount + ".Frage" : "Fragen"}</h2>
  7. </div>
  8. <div id="QuestionDiv">
  9. <h2 id="Question">Warum ist Kerem so schrott ? </h2>
  10. </div>
  11. </div>
  12. )
  13. }
  14. export default Question