import React from 'react'; import { useParams } from 'react-router-dom'; import { LocationViewer } from '@/components/location/LocationViewer'; export const LocationShareView: React.FC = () => { const { token } = useParams<{ token: string }>(); if (!token) { return (

Invalid Share Link

No share token provided in the URL

); } return ; };