A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/app/hooks/useI18nContext.js

13 lines
331 B

import { useContext } from 'react'
import { I18nContext } from '../contexts/i18n'
/**
* useI18ncContext
*
* A time saving shortcut to using useContext + I18ncontext in many
* different places.
* @return {Function} I18n function from contexts/I18n.js
*/
export function useI18nContext () {
return useContext(I18nContext)
}