15 lines
376 B
TypeScript
15 lines
376 B
TypeScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
const AppFooter: React.FC = () => (
|
|
<footer className="site-footer">
|
|
<div>
|
|
<Link to="/privacy-policy">Privacy Policy</Link>
|
|
<Link to="/terms-of-service">Terms of Service</Link>
|
|
</div>
|
|
<div className="site-footer-caption">SASA Portal</div>
|
|
</footer>
|
|
);
|
|
|
|
export default AppFooter;
|