frontPanel/src/pages/ResultPage/ResultPage.tsx

19 lines
374 B
TypeScript
Raw Normal View History

2023-12-07 21:30:26 +00:00
import { useQuestionsStore } from "@root/questions/store";
import FirstEntry from "./FirstEntry"
export default function ResultPage() {
const { questions } = useQuestionsStore();
//ищём хотя бы один result
const haveResult = questions.some((question) => {
question.type === "result"
})
return (
<>
</>
);
}