init frontend

This commit is contained in:
cue
2024-04-02 11:18:51 +03:00
parent de951ae100
commit 07dd23ee8e
75 changed files with 9329 additions and 3 deletions
@@ -0,0 +1,22 @@
import { useTranslation } from "react-i18next";
import less from "./SearchBar.module.less"
import { Input } from "../../shared/ui/input";
import { Search } from "lucide-react";
const SearchBar = ({ title = "" }: { title: string }) => {
// const { t } = useTranslation();
return (
<nav className={less["search-bar"]}>
<h3 className={less['title-content']}>{title}</h3>
<Search/>
<Input className={less["input-search"]} placeholder="Введите что-то для поиска"></Input>
</nav>
)
}
export default SearchBar;