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) 198 B
import {useContext} from 'react'; import {SnackBarContext} from '.'; const useSnackBar = () => { const init = useContext(SnackBarContext); return init; }; export default useSnackBar;