fabasoad/business-card

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import * as React from 'react'

import FooterEmail from './FooterEmail'
import FooterLocation from './FooterLocation'

export default function FooterContacts() {
  return (
    <div className="footer-contacts">
      <FooterLocation />
      <FooterEmail />
    </div>
  )
}