Tạo UI cho người dùng tạo Tour

This commit is contained in:
2026-06-13 20:46:31 +07:00
parent c51ddc34c7
commit 25fcd5d926
28 changed files with 767 additions and 76 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
import React from 'react';
import 'leaflet/dist/leaflet.css';
export declare const ExploreMap: ({ onBack, onLogout, user }: {
export declare const ExploreMap: ({ onBack, onLogout, user, onViewTour }: {
onBack: () => void;
onLogout?: () => void;
user?: any;
onViewTour: (id: string) => void;
}) => React.JSX.Element;