mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-20 11:26:00 +01:00
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
|
import { translationAtom } from "@/atoms/translations-atom";
|
||
|
import { useAtomValue } from "jotai";
|
||
|
|
||
|
const useTranslation = () => {
|
||
|
const t = useAtomValue(translationAtom);
|
||
|
return t;
|
||
|
};
|
||
|
|
||
|
export default useTranslation;
|