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.
14 lines
331 B
14 lines
331 B
5 years ago
|
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)
|
||
|
}
|