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

10 lines
No EOL
253 B
JavaScript

import { useContext } from "react"
import ContextLanguage from "../contexts/ContextLanguage"
/**
* Hook to quickly use the strings of {@link ContextLanguage}.
*/
export default function useStrings() {
return useContext(ContextLanguage).strings
}