This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Netflix-Clone/src/components/Footer.tsx
2022-12-16 11:31:22 -05:00

18 lines
351 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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