import React from 'react'; import WithHover from './WithHover.jsx'; import texts from '../data/texts.js'; const LangSwitch = ({ lang, setLang, setHover, opened, setOpened}) => { const handleSetLang = (key) => { setLang(key); setOpened(false); }; return (