Rev 3365 |
|
Comparar con el anterior |
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
3719 |
stevensc |
1 |
import { useContext } from 'react';
|
|
|
2 |
import { HabitsUrlsContext } from '@providers/habits/habitsUrls';
|
|
|
3 |
|
|
|
4 |
export function useHabitsUrls() {
|
|
|
5 |
const { loading, categories, links, emojis } = useContext(HabitsUrlsContext);
|
|
|
6 |
return { loading, categories, links, emojis };
|
|
|
7 |
}
|