9 lines
268 B
TypeScript
9 lines
268 B
TypeScript
import React from 'react';
|
|
import 'leaflet/dist/leaflet.css';
|
|
export declare const ExploreMap: ({ onBack, onLogout, user, onViewTour }: {
|
|
onBack: () => void;
|
|
onLogout?: () => void;
|
|
user?: any;
|
|
onViewTour: (id: string) => void;
|
|
}) => React.JSX.Element;
|