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.
13 lines
331 B
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)
|
|
}
|
|
|