We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b37b9c commit 26b33bbCopy full SHA for 26b33bb
1 file changed
client/src/pages/matchdetails/index.tsx client/src/pages/matchdetails.tsxclient/src/pages/matchdetails/index.tsx renamed to client/src/pages/matchdetails.tsx
@@ -1,8 +1,8 @@
1
import Image from "next/image";
2
import { useEffect, useState } from "react";
3
4
-import { MatchDetailsData } from "../../components/ui/Common/types";
5
-import List, { MatchDetailsProps } from "../../components/ui/Matchdetails/List";
+import { MatchDetailsData } from "../components/ui/Common/types";
+import List, { MatchDetailsProps } from "../components/ui/Matchdetails/List";
6
7
const columns = [
8
"Team name",
@@ -47,7 +47,7 @@ const mockData: MatchDetailsData[] = [
47
},
48
];
49
50
-export default function Leaderboard() {
+export default function MatchDetails() {
51
const [data, setData] = useState(mockData);
52
53
useEffect(() => {
0 commit comments