Templates:
Team: Week: (Sept 30 β Oct 6)
Objective 1
Objective 2 \
This is a gist that contains utility methods and helpers that i have commonly used across multiple projects
import React from "react"; | |
import usePlaceAutoComplete from "./usePlaceAutoComplete"; | |
import * as Popover from "@radix-ui/react-popover"; | |
import "./styles.css"; | |
export function PlaceAutoComplete({ | |
onSelect = () => {}, | |
initialValue = "", | |
}: { | |
initialValue?: string; |