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