diff --git a/src/components/Burger.tsx b/src/components/Burger.tsx index 99b9e67..269379c 100644 --- a/src/components/Burger.tsx +++ b/src/components/Burger.tsx @@ -21,10 +21,12 @@ import { ReactComponent as SVGFile } from "assets/svg/file.svg"; import { ReactComponent as SVGEye } from "assets/svg/eye.svg"; import { ReactComponent as SVGArrowUp } from "assets/svg/arrow-up.svg"; import { ReactComponent as SVGCaretDown } from "assets/svg/caret-down.svg"; +import { useTranslation } from "react-i18next"; type Props = React.ComponentPropsWithoutRef<"div">; const Burger = (props: Props) => { + const { t, i18n } = useTranslation(); return (