export const calculateGoalDifference = (goalsFor:number, goalsAgainst:number) => {
  return goalsFor - goalsAgainst
}
