import { useMemo } from "react";
import { Box } from "@mantine/core";
import Header from "./header";
import TeamList from "@/features/teams/components/team-list";
import SwipeableTabs from "@/components/swipeable-tabs";
import { useTournament } from "../../queries";
import MatchList from "@/features/matches/components/match-list";
import { TournamentStats } from "../tournament-stats";
interface ProfileProps {
id: string;
}
const Profile = ({ id }: ProfileProps) => {
const { data: tournament } = useTournament(id);
if (!tournament) return null;
const tabs = useMemo(() => [
{
label: "Overview",
content:
},
{
label: "Matches",
content: b.order - a.order) || []} />
},
{
label: "Teams",
content: <>
>
}
], [tournament]);
return <>
>;
};
export default Profile;