MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / LocationAutocompleteProps

Interface LocationAutocompleteProps

src/components/LocationAutocomplete.tsx:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { supabase } from "@/integrations/supabase/client";
4import { callBackend } from "@/lib/call-backend";
5
6interface LocationAutocompleteProps {
7 value: string;
8 onChange: (value: string) => void;
9 placeholder?: string;
10 /** @deprecated retained for backwards compatibility; token is no longer required on the client */
11 mapToken?: string;
12}
13
14const LocationAutocomplete = ({ value, onChange, placeholder = "Search location…" }: LocationAutocompleteProps) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected