import React from 'react'; import { Link as GatsbyLink } from 'gatsby'; const Link = ({ children, to, external, ...other }) => { if (!external && (/^\/(?!\/)/).test(to)) { return ( {children} ); } return ( {children} ); }; export default Link;