Files
web-menu-react-version-/src/hooks/useTranslations.tsx
2025-10-04 18:22:24 +03:00

8 lines
228 B
TypeScript

import { useAppSelector } from "redux/hooks";
export function useTranslations() {
const { isRTL } = useAppSelector((state) => state.locale);
const nameProp = isRTL ? "arabic_name" : "name";
return [nameProp] as const ;
}