import React from 'react'; import { Link as GatsbyLink } from 'gatsby'; import { Grid, Row, Col } from '@freecodecamp/react-bootstrap'; import './footer.css'; const ColHeader = ({ children, ...other }) => (
{children}
); const Link = ({ children, to, external, ...other }) => { if (!external && (/^\/(?!\/)/).test(to)) { return ( {children} ); } return ( {children} ); }; function Footer() { return ( ); } Footer.displayName = 'Footer'; export default Footer;