import "./Card.css"; import iconButton from "./iconButton.svg"; import { useAppSelector } from "hooks/redux"; export const Card: React.FC = ({ item, onClick }) => { const { currentLang } = useAppSelector((state) => state.languageReducer); console.log(currentLang); return (
onClick()} className="card"> building
лого

{item.app_title}

{item.location}

{item.description}

{item.feature_description ?

{item.feature_description}

:

}
); };