1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/hooks/useStrings.js

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
}