fabasoad/business-card

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

Summary

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

export default function FooterEmail() {
  return (
    <Col>
      <i className="fa fa-envelope fa-2x"></i>
      <p>fabasoad@gmail.com</p>
    </Col>
  )
}