Files
Tom Moor bf45e97641 chore: Enforce type import consistency (#10968)
* Update types

* fix circular dep

* type imports

* lint type imports and --fix
2025-12-19 23:07:02 -05:00

12 lines
300 B
TypeScript

import { createContext, useContext } from "react";
import type { PublicTeam } from "@shared/types";
import type Team from "~/models/Team";
export const TeamContext = createContext<Team | PublicTeam | undefined>(
undefined
);
export function useTeamContext() {
return useContext(TeamContext);
}