|
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 |
|
|
|
4 |
export default function useGoals() {
|
|
|
5 |
const goalContext = useContext(GoalsContext)
|
|
|
6 |
return goalContext
|
|
|
7 |
}
|