lms/resources/js/hooks/use-lang.tsx
2025-12-15 12:26:23 +01:00

9 lines
192 B
TypeScript

import { SharedData } from '@/types/global';
import { usePage } from '@inertiajs/react';
export function useLang() {
const { props } = usePage<SharedData>();
return props.translate;
}