mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { usePage } from '@inertiajs/react';
|
|
import type { InertiaPage } from '~/types/inertia';
|
|
|
|
const useUser = () => usePage<InertiaPage>().props.auth;
|
|
export default useUser;
|