import { useAtom } from "jotai"; import { useTranslations } from "next-intl"; import { searchStringAtom } from "@/app/atoms"; const SearchBar = () => { const t = useTranslations("Tournaments"); const [searchString, setSearchString] = useAtom(searchStringAtom); return (