import React, { useState} from 'react'; let list = [] let QnAadmin = {} let savechoose = {} function AdminQuiz(props) { const [question, setQuestion] = useState(props.data.Q) // setQuestion(props.data.Q) // question = props.data.Q const [choose, setChoose] = useState(props.data.Choose) // setChoose(props.data.Choose) // choose = props.data.Choose const [answer, setAnswer] = useState(props.data.A) // setAnswer(props.data.A) // answer = props.data.A const [selectOption, setselectOption] = useState(1) const handleChangeQuestion = (event) => { QnAadmin['Q'] = event.target.value setQuestion(event.target.value) } const handleChangeChoose = (event) => { savechoose[event.target.id] = event.target.value setChoose(event.target.value) } const handleChangeanswer = (event) => { QnAadmin['A'] = event.target.value setAnswer(event.target.value) } function addSelectOption() { list.push(