import { observer } from "mobx-react"; // plane imports import { useTranslation } from "@plane/i18n"; // components import { SidebarSearchButton } from "@/components/sidebar/search-button"; // hooks import { usePowerK } from "@/hooks/store/use-power-k"; export const AppSearch = observer(() => { // store hooks const { togglePowerKModal } = usePowerK(); // translation const { t } = useTranslation(); return ( ); });