9 lines
192 B
TypeScript
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;
|
|
}
|