import { observer } from "mobx-react"; import { Search } from "lucide-react"; // plane imports import { useTranslation } from "@plane/i18n"; // hooks import { useCommandPalette } from "@/hooks/store/use-command-palette"; export const AppSearch = observer(() => { // store hooks const { toggleCommandPaletteModal } = useCommandPalette(); // translation const { t } = useTranslation(); return ( ); });