import React from 'react'; import { Link } from 'react-router'; interface FooterProps { currentPage?: 'home' | 'chart'; } const Footer: React.FC = () => { return ( ); }; export default Footer;