converted components to .ts

This commit is contained in:
andres alcocer
2022-11-26 16:25:35 -05:00
parent 907500f0f5
commit 7b82882998
33 changed files with 291 additions and 326 deletions

18
src/components/Footer.tsx Normal file
View File

@@ -0,0 +1,18 @@
import React from 'react'
const footer = () => (
<footer className='footer'>
<div className='footer__copyright'>
&copy; 2022 Made with by{' '}
<a
className='footer__copyright--link'
href='https://github.com/devandres-tech'
>
{' '}
Dev Andres
</a>
</div>
</footer>
)
export default footer