import { SearchBox } from "@allurereport/web-components"; import { useI18n } from "@/stores/locale"; import { setTreeQuery, treeFiltersStore } from "@/stores/tree"; import { Filters } from "./Filters"; import * as styles from "./styles.scss"; const Search = () => { const { query } = treeFiltersStore.value; const { t } = useI18n("search"); return ; }; export const HeaderActions = () => { return (
); };