import { Box, Button, Text } from "@mantine/core";
import Header from "./header";
import { testEvent } from "@/utils/test-event";
import { Player } from "@/features/players/types";
import TeamList from "@/features/teams/components/team-list";
interface ProfileProps {
player: Player;
}
const Profile = ({ player }: ProfileProps) => {
return <>
Teams
>;
};
export default Profile;