import React from 'react'; import { Grid, Row, Col } from '@freecodecamp/react-bootstrap'; import Link from '../helpers/Link'; import './footer.css'; const propTypes = { children: PropTypes.any }; const ColHeader = ({ children, ...other }) => (
{children}
); ColHeader.propTypes = propTypes; const linkPropTypes = { children: PropTypes.any, external: PropTypes.bool, to: PropTypes.string.isRequired }; function Footer() { return ( ); } Footer.displayName = 'Footer'; export default Footer;