From 446dab7d4998456f2754ea95bd4cf268dea2e82d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 02:23:10 +0100 Subject: [PATCH] Import Link component in QuizRunner.tsx --- client/src/components/QuizRunner.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/components/QuizRunner.tsx b/client/src/components/QuizRunner.tsx index 43efb92..1c2fcf1 100644 --- a/client/src/components/QuizRunner.tsx +++ b/client/src/components/QuizRunner.tsx @@ -1,4 +1,5 @@ import { useEffect, useLayoutEffect, useMemo, useState } from 'react'; +import { Link } from 'react-router-dom'; import { fetchEntries, fetchEntry } from '../api'; import type { EntryDetail, EntryItems, EntrySummary, QuizQuestionWithEntry } from '../types'; import VideoPlayer from './VideoPlayer';