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 {ColorContext} from './index'; const useColors = () => { const init = useContext(ColorContext); return init; }; export default useColors;