Skip to content

Commit 1def5e0

Browse files
committed
remove imports
1 parent 23e5768 commit 1def5e0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/components/Home.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { useState, useEffect } from "react";
22
import { Box } from "@mui/material";
3-
import { useData } from "../data/data.context";
43

54
export default function Home() {
65
// Sample data for practice questions (you can replace this with actual data)
@@ -9,8 +8,6 @@ export default function Home() {
98
{ difficulty: "Medium", count: 20 },
109
{ difficulty: "Hard", count: 15 },
1110
];
12-
const { getQuestions } = useData();
13-
1411
// State to hold the practice questions data
1512
const [questionsData, setQuestionsData] = useState(practiceQuestions);
1613

0 commit comments

Comments
 (0)