aboutsummaryrefslogtreecommitdiff
path: root/src/components/hooks/context/useTeam.ts
blob: 95ff4bee4c613c0bb68b5badfebef40fc710782b (plain) (blame)
1
2
3
4
5
6
import { useContext } from 'react';
import { TeamContext } from '@/app/(main)/teams/TeamProvider';

export function useTeam() {
  return useContext(TeamContext);
}