import { Outlet, useLocation, useParams } from "react-router" import { Link } from "react-router-dom" import { GetTeam } from "../../api/team" import WithDataFetching from "../../components/withdatafetching" import Team from "../../types/team" import Sidebar from "./sidebar" export default function TeamPage() { const { slug } = useParams() if (!slug) { return