UNPKG

softlofy-rn-components

Version:

A collection of commonly used components on React Native project developed by [Softlofy](https://softlofy.com/).

10 lines (7 loc) 194 B
import {useContext} from 'react'; import {LoadingContext} from '.'; const useLoading = () => { const init = useContext(LoadingContext); return init; }; export default useLoading;