From 0507b9f7c4cc7c3c33fe6c63a518bb49bf29b1f0 Mon Sep 17 00:00:00 2001 From: julius Date: Tue, 25 Mar 2025 09:13:26 +0100 Subject: [PATCH] feat: default export `TeamPanel` --- src/TeamPanel.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;