mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-23 11:57:50 -05:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import { useMatches } from "@remix-run/react";
|
|
|
|
export function useBaseUrl() {
|
|
const matches = useMatches();
|
|
|
|
return (matches[0]?.data as any)["baseUrl"] as string;
|
|
}
|