feat: default export TeamPanel

This commit is contained in:
2025-03-25 09:13:26 +01:00
parent e701ebbb02
commit 0507b9f7c4

View File

@@ -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 <span className="loader" />;
};
export default TeamPanel;