import React from "react";
import anwserIconSafe from "../../assets/img/icons/anwser_icon_safe.svg";
import anwserIconUnsafe from "../../assets/img/icons/anwser_icon_unsafe.svg";
import { useGame } from "../../hooks/useGame";
import { useUser } from "../../hooks/useUser";
import Loading from "../animations/Loading";
export default function GameQuestion({ questionId, correctAnswer }, ...props) {
const { answerQuestion, contextGameDatas } = useGame();
const { screensTranslations } = useUser();
if (!screensTranslations || !screensTranslations.tutorial) return
{currentScreenTranslations.is_it_secure_question}
{correctAnswer}
*/}