EvalueTonSavoir/client/src/components/Footer/Footer.tsx
2025-01-11 02:22:14 -05:00

21 lines
694 B
TypeScript

import * as React from 'react';
import './footer.css';
type FooterProps = object; //empty object
const Footer: React.FC<FooterProps> = () => {
return (
<div className="footer">
<div className="footer-content">
Réalisé avec à Montréal par des finissantes de l&apos;ETS
</div>
<div className="footer-links">
<a href="https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir/">GitHub</a>
<span className="divider">|</span>
<a href="https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir/wiki">Wiki GitHub</a>
</div>
</div>
);
};
export default Footer;