| 1 | import { Map, Layers, BarChart3 } from "lucide-react"; |
| 2 | |
| 3 | interface MobileBottomNavProps { |
| 4 | activeTab: "map" | "fields" | "analytics"; |
| 5 | onTabChange: (tab: "map" | "fields" | "analytics") => void; |
| 6 | } |
| 7 | |
| 8 | const tabs = [ |
| 9 | { id: "map" as const, icon: Map, label: "Map" }, |
nothing calls this directly
no outgoing calls
no test coverage detected