Proyectos de Subversion LeadersLinked - SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2652 stevensc 1
import { useContext } from 'react'
2
import { GoalsContext } from '@app/providers/goals'
3
 
2774 stevensc 4
export function useGoals() {
2652 stevensc 5
  const goalContext = useContext(GoalsContext)
6
  return goalContext
7
}