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) 232 B
import {useContext} from 'react'; import {CommonConstantsContext} from './index'; const useCommonConstants = () => { const init = useContext(CommonConstantsContext); return init; }; export default useCommonConstants;