diff --git a/src/TeamPanel.tsx b/src/TeamPanel.tsx index b4c1b5c..cb24326 100644 --- a/src/TeamPanel.tsx +++ b/src/TeamPanel.tsx @@ -3,7 +3,7 @@ import { apiAuth, loadPlayers, User } from "./api"; import { useSession } from "./Session"; import { ErrorState } from "./types"; -export const TeamPanel = () => { +const TeamPanel = () => { const { teams } = useSession(); const newPlayerTemplate = { id: 0, @@ -199,3 +199,4 @@ export const TeamPanel = () => { ); } else ; }; +export default TeamPanel;