Rev 3358 | Rev 3365 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import { useContext } from 'react'
import { HabitsUrlsContext } from '@providers/habits/habitsUrls'
export function useHabitsUrls() {
const { loading, categories, links, selectEmoji } =
useContext(HabitsUrlsContext)
return { loading, categories, links, selectEmoji }
}