import React from "react"; import { SpinnerIcon } from "../icons"; import { useSurvey } from "../layouts"; import { AQuestion } from "./AQuestion"; export const AnswerPreview = () => { const { survey } = useSurvey(); if (!survey) { return (
); } // 다음은 순서가 중요합니다. survey가 늦게 생성될 수 있습니다. const questions = survey.questions; return (

{survey.title}

{survey.comment}

{questions.map((question) => { return ( ); })}
); };