better brackets, info types

This commit is contained in:
yohlo
2025-09-07 00:52:28 -05:00
parent cb83ea06fa
commit 2396464a19
36 changed files with 678 additions and 657 deletions

View File

@@ -1,11 +1,11 @@
import { List, ListItem, Skeleton, Text } from "@mantine/core";
import { useNavigate } from "@tanstack/react-router";
import Avatar from "@/components/avatar";
import { Tournament } from "../types";
import { TournamentInfo } from "../types";
import { useCallback } from "react";
interface TournamentListProps {
tournaments: Tournament[];
tournaments: TournamentInfo[];
loading?: boolean;
}