import { withTranslation } from 'react-i18next'; import { Link } from 'react-router-dom'; function SearchAddress({ t }) { return (
How are you? {t('show_btn')}
); } export default withTranslation('rentAndBuyPage')(SearchAddress);