mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 15:51:12 -05:00
7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
import { useEffect } from 'react';
|
|
import { useLocationAutoDetect } from '@/hooks/useLocationAutoDetect';
|
|
|
|
export function LocationAutoDetectProvider() {
|
|
useLocationAutoDetect();
|
|
return null; // This component doesn't render anything, just runs the hook
|
|
} |