fabasoad/business-card

View on GitHub
src/components/Footer/FooterLocation.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import * as React from 'react'
import { Col } from 'react-bootstrap'
import { useTranslation } from 'react-i18next'

export default function FooterLocation() {
  const { t } = useTranslation()
  return (
    <Col>
      <i className="fa fa-map-marker-alt fa-2x"></i>
      <p>{t('business-card-contact-city')}</p>
    </Col>
  )
}