mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
14 lines
486 B
JavaScript
14 lines
486 B
JavaScript
import { createContext } from "react"
|
|
|
|
|
|
/**
|
|
* A context containing an object with the following values:
|
|
* - `lang`: a string corresponding to the ISO 639-1 code of the current language
|
|
* - `setLang`: a function to change the current language
|
|
* - `strings`: an object containing all strings of the current language
|
|
*/
|
|
export default createContext({
|
|
lang: null,
|
|
setLang: () => console.error("Trying to setLang while outside a ContextServer.Provider!"),
|
|
strings: null,
|
|
})
|