mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
import { PageProps } from '@adonisjs/inertia/types';
|
|
import { usePage } from '@inertiajs/react';
|
|
|
|
export function useAppUrl() {
|
|
const { props } = usePage<PageProps & { appUrl: string }>();
|
|
return props.appUrl;
|
|
}
|