8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { usePage } from '@inertiajs/react';
|
|
|
|
export const useLocale = () => {
|
|
const { locale } = usePage<{ locale?: string }>().props;
|
|
|
|
return locale;
|
|
};
|