| 14 | import { formatLongNumber } from '@/lib/format'; |
| 15 | |
| 16 | export interface WorldMapProps extends ColumnProps { |
| 17 | websiteId?: string; |
| 18 | data?: any[]; |
| 19 | } |
| 20 | |
| 21 | export function WorldMap({ websiteId, data, ...props }: WorldMapProps) { |
| 22 | const [tooltip, setTooltipPopup] = useState(); |
nothing calls this directly
no outgoing calls
no test coverage detected