mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
10 lines
No EOL
265 B
JavaScript
10 lines
No EOL
265 B
JavaScript
import { useContext } from "react"
|
|
import ContextLanguage from "../contexts/ContextLanguage"
|
|
|
|
|
|
/**
|
|
* Hook to quickly use the `strings` attribute of {@link ContextLanguage}.
|
|
*/
|
|
export default function useStrings() {
|
|
return useContext(ContextLanguage).strings
|
|
} |