6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
import { usePage } from '@inertiajs/react';
|
|
|
|
export const useLocale = () => {
|
|
const { locale } = usePage().props as any;
|
|
return locale;
|
|
}; |