import { CheckIcon, XMarkIcon, QuestionMarkCircleIcon, FingerPrintIcon, LockClosedIcon } from '@heroicons/react/24/outline' import Logo from './logo'; import { SessionState } from '../lib/session'; /* const features = [ { name: 'Correct Questions', description: 'You got [insert number here] questions right! Good Job!', icon: CheckIcon, }, { name: 'Incorrect Questions', description: 'You got [insert number here] questions wrong! You can do better!', icon: XMarkIcon, }, { name: 'Total Questions', description: 'There were [insert number here] questions in total.', icon: QuestionMarkCircleIcon, } ] */ const Result = ({name, text1, number, text2, Icon}: {name: string, text1: string, number: number, text2: string, Icon: any}) => { return (
{name}
{`${text1} ${number} ${text2}`}
// {/*

{`${text1} ${number} ${text2}`}

*/} ) } const ResultScreen = ({state}: {state: SessionState}) => { return (