import { Box, Flex, Loader } from "@mantine/core"; import Header from "./header"; import SwipeableTabs from "@/components/swipeable-tabs"; import { usePlayer, usePlayerMatches, usePlayerStats } from "../../queries"; import TeamList from "@/features/teams/components/team-list"; import StatsOverview, { StatsSkeleton } from "@/components/stats-overview"; import MatchList from "@/features/matches/components/match-list"; import HeaderSkeleton from "./header-skeleton"; const SkeletonLoader = () => ( ) const ProfileSkeleton = () => { const tabs = [ { label: "Overview", content: , }, { label: "Matches", content: , }, { label: "Teams", content: , }, ]; return ( <> ); }; export default ProfileSkeleton;